mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
* Updated Godot icons (and removed old ones) * Improve "Debug Pinned Scene" command by making the pinned scene persist between VSCode sessions * Fix scene file highlighting not working * Fix ScenePreview not working in Godot 3 * Add buttons for relevant actions to ScenePreview items * Add internal document links for SubResource() and ExtResource() statements in scene files * Add hover for SubResource() and ExtResource() statements in scene files * Improve ability to right click -> open docs for methods of builtin types (doesn't always work) * Add a file decorator to show the pinned debug file in the filesystem view/editor tabs * Add item decorators to the Scene Preview to show Node attributes more clearly * Updated readme * Overhauled documentation viewer * Added GDScript formatter * Add (disabled) experimental providers for custom completions, semantic tokens, and tasks * Lots of internal refactoring
129 lines
1.9 KiB
CSS
129 lines
1.9 KiB
CSS
code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
color: #657b83;
|
|
/* base00 */
|
|
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
font-size: 1em;
|
|
text-align: left;
|
|
white-space: pre;
|
|
word-spacing: normal;
|
|
word-break: normal;
|
|
word-wrap: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
-moz-tab-size: 4;
|
|
-o-tab-size: 4;
|
|
tab-size: 4;
|
|
|
|
-webkit-hyphens: none;
|
|
-moz-hyphens: none;
|
|
-ms-hyphens: none;
|
|
hyphens: none;
|
|
}
|
|
|
|
pre[class*="language-"]::-moz-selection,
|
|
pre[class*="language-"] ::-moz-selection,
|
|
code[class*="language-"]::-moz-selection,
|
|
code[class*="language-"] ::-moz-selection {
|
|
background: #073642;
|
|
/* base02 */
|
|
}
|
|
|
|
pre[class*="language-"]::selection,
|
|
pre[class*="language-"] ::selection,
|
|
code[class*="language-"]::selection,
|
|
code[class*="language-"] ::selection {
|
|
background: #073642;
|
|
/* base02 */
|
|
}
|
|
|
|
/* Code blocks */
|
|
pre[class*="language-"] {
|
|
padding: 1em;
|
|
margin: .5em 0;
|
|
overflow: auto;
|
|
border-radius: 0.3em;
|
|
}
|
|
|
|
:not(pre)>code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
background-color: #fdf6e3;
|
|
}
|
|
|
|
/* Inline code */
|
|
:not(pre)>code[class*="language-"] {
|
|
padding: .1em;
|
|
border-radius: .3em;
|
|
}
|
|
|
|
.token.comment,
|
|
.token.prolog,
|
|
.token.doctype,
|
|
.token.cdata {
|
|
color: #6A9955;
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #586e75;
|
|
}
|
|
|
|
.namespace {
|
|
opacity: .7;
|
|
}
|
|
|
|
.token.property,
|
|
.token.tag,
|
|
.token.boolean,
|
|
.token.number,
|
|
.token.constant,
|
|
.token.symbol,
|
|
.token.deleted {
|
|
color: #569cd6;
|
|
}
|
|
|
|
.token.selector,
|
|
.token.attr-name,
|
|
.token.string,
|
|
.token.char,
|
|
.token.builtin,
|
|
.token.url,
|
|
.token.inserted {
|
|
color: #ce9178;
|
|
}
|
|
|
|
.token.entity {
|
|
color: #657b83;
|
|
background: #eee8d5;
|
|
}
|
|
|
|
.token.atrule,
|
|
.token.attr-value,
|
|
.token.keyword {
|
|
color: #859900;
|
|
}
|
|
|
|
.token.function,
|
|
.token.class-name {
|
|
color: #4EC9B0;
|
|
}
|
|
|
|
.token.regex,
|
|
.token.important,
|
|
.token.variable {
|
|
color: #cb4b16;
|
|
}
|
|
|
|
.token.important,
|
|
.token.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.token.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.token.entity {
|
|
cursor: help;
|
|
}
|