-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom-theme.json
73 lines (73 loc) · 1.66 KB
/
custom-theme.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Material Darker",
"type": "dark",
"colors": {
"editor.background": "#263238",
"editor.foreground": "#eeffff",
"editor.lineHighlightBackground": "#37474F",
"editor.selectionBackground": "#546E7A",
"editor.selectionHighlightBackground": "#546E7A",
"editor.inactiveSelectionBackground": "#546E7A",
"editor.wordHighlightBackground": "#546E7A",
"editor.wordHighlightStrongBackground": "#546E7A",
"editor.findMatchBackground": "#546E7A",
"editor.findMatchHighlightBackground": "#546E7A",
"editor.findRangeHighlightBackground": "#546E7A",
"editor.hoverHighlightBackground": "#546E7A",
"editor.lineHighlightBorder": "#546E7A",
"editor.rangeHighlightBackground": "#546E7A",
"editor.selectionHighlightBorder": "#546E7A",
"editor.wordHighlightBorder": "#546E7A",
"editor.wordHighlightStrongBorder": "#546E7A"
},
"tokenColors": [
{
"scope": "comment",
"settings": {
"foreground": "#546E7A"
}
},
{
"scope": "string",
"settings": {
"foreground": "#C3E88D"
}
},
{
"scope": "number",
"settings": {
"foreground": "#F78C6C"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#EEFFFF"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#C792EA"
}
},
{
"scope": "function",
"settings": {
"foreground": "#82AAFF"
}
},
{
"scope": "class",
"settings": {
"foreground": "#FFCB6B"
}
},
{
"scope": "type",
"settings": {
"foreground": "#FFCB6B"
}
}
]
}