forked from AI45Lab/Code
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcodehike-theme.json
More file actions
106 lines (106 loc) · 2.16 KB
/
Copy pathcodehike-theme.json
File metadata and controls
106 lines (106 loc) · 2.16 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "a3s-code",
"type": "dark",
"colors": {
"editor.background": "#0b0f14",
"editor.foreground": "#d4d9e2",
"editorLineNumber.foreground": "#414a58",
"editorLineNumber.activeForeground": "#8e9aac",
"editor.selectionBackground": "#243854"
},
"tokenColors": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": {
"foreground": "#657181",
"fontStyle": "italic"
}
},
{
"scope": [
"keyword",
"storage",
"storage.type",
"storage.modifier",
"keyword.control",
"keyword.operator.word"
],
"settings": {
"foreground": "#8fb8f8"
}
},
{
"scope": [
"entity.name.function",
"support.function",
"meta.function-call",
"variable.function"
],
"settings": {
"foreground": "#dfb978"
}
},
{
"scope": [
"entity.name.type",
"entity.name.class",
"support.type",
"support.class",
"entity.name.namespace"
],
"settings": {
"foreground": "#bda4dd"
}
},
{
"scope": [
"entity.name.function.decorator",
"meta.function.decorator",
"punctuation.definition.decorator"
],
"settings": {
"foreground": "#c8a5ee"
}
},
{
"scope": ["string", "string.quoted", "string.template"],
"settings": {
"foreground": "#8fc4a4"
}
},
{
"scope": [
"constant.numeric",
"constant.language",
"constant.character",
"constant.other"
],
"settings": {
"foreground": "#d89573"
}
},
{
"scope": [
"variable.parameter",
"variable.other",
"meta.object-literal.key",
"meta.mapping.key"
],
"settings": {
"foreground": "#cfd5df"
}
},
{
"scope": ["punctuation", "meta.brace", "meta.delimiter"],
"settings": {
"foreground": "#7c8796"
}
},
{
"scope": ["keyword.operator", "operator"],
"settings": {
"foreground": "#7fa6b9"
}
}
]
}