Add color codes and modify some colors, enable semanticHighlighting.

This commit is contained in:
zzgodgundam 2020-06-29 00:19:47 +08:00
parent 9cfbac1fe4
commit a2c4a39f5c

View File

@ -1,9 +1,18 @@
// #1e1f1c (tab well, borders)
// #000000 (editor background)
// #008000 (comment green)
// #70B0FF (function blue)
// #FF0080 (keyword and type)
// #808080 (Constant grey)
// #FF8000 (Global variable yellow)
// #40FFFF (Define)
// #FFFFB3 (Member)
{ {
"name": "zzTheme", "name": "zzTheme",
"type": "dark", "type": "dark",
"colors": { "colors": {
"editor.background": "#263238", "editor.background": "#000000",
"editor.foreground": "#eeffff", "editor.foreground": "#CCCCCC",
"activityBarBadge.background": "#007acc", "activityBarBadge.background": "#007acc",
"sideBarTitle.foreground": "#bbbbbb" "sideBarTitle.foreground": "#bbbbbb"
}, },
@ -56,7 +65,7 @@
"storage.modifier" "storage.modifier"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#FF0080"
} }
}, },
{ {
@ -76,7 +85,7 @@
"keyword.other.substitution" "keyword.other.substitution"
], ],
"settings": { "settings": {
"foreground": "#89DDFF" "foreground": "#FFFFFF"
} }
}, },
{ {
@ -100,7 +109,8 @@
"keyword.other.special-method" "keyword.other.special-method"
], ],
"settings": { "settings": {
"foreground": "#82AAFF" "fontStyle": "bold",
"foreground": "#70B0FF"
} }
}, },
{ {
@ -625,5 +635,6 @@
"foreground": "#EEFFFF" "foreground": "#EEFFFF"
} }
} }
] ],
"semanticHighlighting": true
} }