mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
478 lines
8.5 KiB
JSON
478 lines
8.5 KiB
JSON
{
|
|
"name": "Quiet Light",
|
|
"tokenColors": [
|
|
{
|
|
"settings": {
|
|
"background": "#F5F5F5",
|
|
"foreground": "#333333"
|
|
}
|
|
},
|
|
{
|
|
"name": "Comments",
|
|
"scope": [
|
|
"comment",
|
|
"punctuation.definition.comment"
|
|
],
|
|
"settings": {
|
|
"fontStyle": "italic",
|
|
"foreground": "#AAAAAA"
|
|
}
|
|
},
|
|
{
|
|
"name": "Comments: Preprocessor",
|
|
"scope": "comment.block.preprocessor",
|
|
"settings": {
|
|
"fontStyle": "",
|
|
"foreground": "#AAAAAA"
|
|
}
|
|
},
|
|
{
|
|
"name": "Comments: Documentation",
|
|
"scope": [
|
|
"comment.documentation",
|
|
"comment.block.documentation"
|
|
],
|
|
"settings": {
|
|
"foreground": "#448C27"
|
|
}
|
|
},
|
|
{
|
|
"name": "Invalid - Deprecated",
|
|
"scope": "invalid.deprecated",
|
|
"settings": {
|
|
"background": "#96000014"
|
|
}
|
|
},
|
|
{
|
|
"name": "Invalid - Illegal",
|
|
"scope": "invalid.illegal",
|
|
"settings": {
|
|
"background": "#96000014",
|
|
"foreground": "#660000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Operators",
|
|
"scope": "keyword.operator",
|
|
"settings": {
|
|
"foreground": "#777777"
|
|
}
|
|
},
|
|
{
|
|
"name": "Keywords",
|
|
"scope": [
|
|
"keyword",
|
|
"storage"
|
|
],
|
|
"settings": {
|
|
"foreground": "#4B83CD"
|
|
}
|
|
},
|
|
{
|
|
"name": "Types",
|
|
"scope": [
|
|
"storage.type",
|
|
"support.type"
|
|
],
|
|
"settings": {
|
|
"foreground": "#7A3E9D"
|
|
}
|
|
},
|
|
{
|
|
"name": "Language Constants",
|
|
"scope": [
|
|
"constant.language",
|
|
"support.constant",
|
|
"variable.language"
|
|
],
|
|
"settings": {
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "Variables",
|
|
"scope": [
|
|
"variable",
|
|
"support.variable"
|
|
],
|
|
"settings": {
|
|
"foreground": "#7A3E9D"
|
|
}
|
|
},
|
|
{
|
|
"name": "Functions",
|
|
"scope": [
|
|
"entity.name.function",
|
|
"support.function"
|
|
],
|
|
"settings": {
|
|
"fontStyle": "bold",
|
|
"foreground": "#AA3731"
|
|
}
|
|
},
|
|
{
|
|
"name": "Classes",
|
|
"scope": [
|
|
"entity.name.type",
|
|
"entity.other.inherited-class",
|
|
"support.class"
|
|
],
|
|
"settings": {
|
|
"fontStyle": "bold",
|
|
"foreground": "#7A3E9D"
|
|
}
|
|
},
|
|
{
|
|
"name": "Exceptions",
|
|
"scope": "entity.name.exception",
|
|
"settings": {
|
|
"foreground": "#660000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Sections",
|
|
"scope": "entity.name.section",
|
|
"settings": {
|
|
"fontStyle": "bold"
|
|
}
|
|
},
|
|
{
|
|
"name": "Numbers, Characters",
|
|
"scope": [
|
|
"constant.numeric",
|
|
"constant.character",
|
|
"constant"
|
|
],
|
|
"settings": {
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "Strings",
|
|
"scope": "string",
|
|
"settings": {
|
|
"foreground": "#448C27"
|
|
}
|
|
},
|
|
{
|
|
"name": "Strings: Escape Sequences",
|
|
"scope": "constant.character.escape",
|
|
"settings": {
|
|
"foreground": "#777777"
|
|
}
|
|
},
|
|
{
|
|
"name": "Strings: Regular Expressions",
|
|
"scope": "string.regexp",
|
|
"settings": {
|
|
"foreground": "#4B83CD"
|
|
}
|
|
},
|
|
{
|
|
"name": "Strings: Symbols",
|
|
"scope": "constant.other.symbol",
|
|
"settings": {
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "Punctuation",
|
|
"scope": "punctuation",
|
|
"settings": {
|
|
"foreground": "#777777"
|
|
}
|
|
},
|
|
{
|
|
"name": "Embedded Source",
|
|
"scope": [
|
|
"string source",
|
|
"text source"
|
|
],
|
|
"settings": {
|
|
"background": "#EAEBE6"
|
|
}
|
|
},
|
|
{
|
|
"name": "-----------------------------------",
|
|
"settings": {}
|
|
},
|
|
{
|
|
"name": "HTML: Doctype Declaration",
|
|
"scope": [
|
|
"meta.tag.sgml.doctype",
|
|
"meta.tag.sgml.doctype string",
|
|
"meta.tag.sgml.doctype entity.name.tag",
|
|
"meta.tag.sgml punctuation.definition.tag.html"
|
|
],
|
|
"settings": {
|
|
"foreground": "#AAAAAA"
|
|
}
|
|
},
|
|
{
|
|
"name": "HTML: Tags",
|
|
"scope": [
|
|
"meta.tag",
|
|
"punctuation.definition.tag.html",
|
|
"punctuation.definition.tag.begin.html",
|
|
"punctuation.definition.tag.end.html"
|
|
],
|
|
"settings": {
|
|
"foreground": "#91B3E0"
|
|
}
|
|
},
|
|
{
|
|
"name": "HTML: Tag Names",
|
|
"scope": "entity.name.tag",
|
|
"settings": {
|
|
"foreground": "#4B83CD"
|
|
}
|
|
},
|
|
{
|
|
"name": "HTML: Attribute Names",
|
|
"scope": [
|
|
"meta.tag entity.other.attribute-name",
|
|
"entity.other.attribute-name.html"
|
|
],
|
|
"settings": {
|
|
"fontStyle": "italic",
|
|
"foreground": "#91B3E0"
|
|
}
|
|
},
|
|
{
|
|
"name": "HTML: Entities",
|
|
"scope": [
|
|
"constant.character.entity",
|
|
"punctuation.definition.entity"
|
|
],
|
|
"settings": {
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "-----------------------------------",
|
|
"settings": {}
|
|
},
|
|
{
|
|
"name": "CSS: Selectors",
|
|
"scope": [
|
|
"meta.selector",
|
|
"meta.selector entity",
|
|
"meta.selector entity punctuation",
|
|
"entity.name.tag.css"
|
|
],
|
|
"settings": {
|
|
"foreground": "#7A3E9D"
|
|
}
|
|
},
|
|
{
|
|
"name": "CSS: Property Names",
|
|
"scope": [
|
|
"meta.property-name",
|
|
"support.type.property-name"
|
|
],
|
|
"settings": {
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "CSS: Property Values",
|
|
"scope": [
|
|
"meta.property-value",
|
|
"meta.property-value constant.other",
|
|
"support.constant.property-value"
|
|
],
|
|
"settings": {
|
|
"foreground": "#448C27"
|
|
}
|
|
},
|
|
{
|
|
"name": "CSS: Important Keyword",
|
|
"scope": "keyword.other.important",
|
|
"settings": {
|
|
"fontStyle": "bold"
|
|
}
|
|
},
|
|
{
|
|
"name": "-----------------------------------",
|
|
"settings": {}
|
|
},
|
|
{
|
|
"name": "Markup: Changed",
|
|
"scope": "markup.changed",
|
|
"settings": {
|
|
"background": "#FFFFDD",
|
|
"foreground": "#000000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Deletion",
|
|
"scope": "markup.deleted",
|
|
"settings": {
|
|
"background": "#FFDDDD",
|
|
"foreground": "#000000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Emphasis",
|
|
"scope": "markup.italic",
|
|
"settings": {
|
|
"fontStyle": "italic"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Error",
|
|
"scope": "markup.error",
|
|
"settings": {
|
|
"background": "#96000014",
|
|
"foreground": "#660000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Insertion",
|
|
"scope": "markup.inserted",
|
|
"settings": {
|
|
"background": "#DDFFDD",
|
|
"foreground": "#000000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Link",
|
|
"scope": "meta.link",
|
|
"settings": {
|
|
"foreground": "#4B83CD"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Output",
|
|
"scope": [
|
|
"markup.output",
|
|
"markup.raw"
|
|
],
|
|
"settings": {
|
|
"foreground": "#777777"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Prompt",
|
|
"scope": "markup.prompt",
|
|
"settings": {
|
|
"foreground": "#777777"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Heading",
|
|
"scope": "markup.heading",
|
|
"settings": {
|
|
"foreground": "#AA3731"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Strong",
|
|
"scope": "markup.bold",
|
|
"settings": {
|
|
"fontStyle": "bold"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Traceback",
|
|
"scope": "markup.traceback",
|
|
"settings": {
|
|
"foreground": "#660000"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup: Underline",
|
|
"scope": "markup.underline",
|
|
"settings": {
|
|
"fontStyle": "underline"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup Quote",
|
|
"scope": "markup.quote",
|
|
"settings": {
|
|
"foreground": "#7A3E9D"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup Lists",
|
|
"scope": "markup.list",
|
|
"settings": {
|
|
"foreground": "#4B83CD"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup Styling",
|
|
"scope": [
|
|
"markup.bold",
|
|
"markup.italic"
|
|
],
|
|
"settings": {
|
|
"foreground": "#448C27"
|
|
}
|
|
},
|
|
{
|
|
"name": "Markup Inline",
|
|
"scope": "markup.inline.raw",
|
|
"settings": {
|
|
"fontStyle": "",
|
|
"foreground": "#AB6526"
|
|
}
|
|
},
|
|
{
|
|
"name": "-----------------------------------",
|
|
"settings": {}
|
|
},
|
|
{
|
|
"name": "Extra: Diff Range",
|
|
"scope": [
|
|
"meta.diff.range",
|
|
"meta.diff.index",
|
|
"meta.separator"
|
|
],
|
|
"settings": {
|
|
"background": "#DDDDFF",
|
|
"foreground": "#434343"
|
|
}
|
|
},
|
|
{
|
|
"name": "Extra: Diff From",
|
|
"scope": "meta.diff.header.from-file",
|
|
"settings": {
|
|
"background": "#FFDDDD",
|
|
"foreground": "#434343"
|
|
}
|
|
},
|
|
{
|
|
"name": "Extra: Diff To",
|
|
"scope": "meta.diff.header.to-file",
|
|
"settings": {
|
|
"background": "#DDFFDD",
|
|
"foreground": "#434343"
|
|
}
|
|
}
|
|
],
|
|
"colors": {
|
|
"editorBackground": "#F5F5F5",
|
|
"editorWhitespaces": "#AAAAAA",
|
|
"editorLineHighlight": "#E4F6D4",
|
|
"editorSelection": "#C9D0D9",
|
|
"statusBarBackground": "#705697",
|
|
"activityBarBackground": "#3D3439",
|
|
"panelBackground": "#F5F5F5",
|
|
"sideBarBackground": "#F2F2F2",
|
|
"focusedElementOutline": "#705697",
|
|
"editorLineNumbers": "#9DA39A",
|
|
"editorCursor": "#54494B",
|
|
"inputBoxActiveOptionBorder": "#adafb7",
|
|
"dropdownBackground": "#F5F5F5",
|
|
"editorFindMatch": "#BF9CAC",
|
|
"editorFindMatchHighlight": "#edc9d8",
|
|
"peekViewEditorMatchHighlight": "#C2DFE3",
|
|
"peekViewTitleBackground": "#F2F8FC",
|
|
"peekViewEditorBackground": "#F2F8FC",
|
|
"peekViewResultsBackground": "#F2F8FC",
|
|
"peekViewResultsMatchHighlight": "#93C6D6",
|
|
"activityBadgeBackground": "#705697"
|
|
}
|
|
} |