-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1337-color-theme.json
119 lines (118 loc) · 2.88 KB
/
1337-color-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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "Goodvibe",
"type": "dark",
"colors": {
"editor.background": "#1B1B1B",
"editor.foreground": "#00BCD4",
"editor.lineHighlightBackground": "#313131",
"editorWhitespace.foreground": "#424242",
"editorIndentGuide.background": "#616161",
"editor.findMatchHighlightBackground": "#DD2C00"
},
"tokenColors": [
{
"name": "Comments",
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"foreground": "#81C784"
}
},
{
"name": "BinaryOps",
"scope": [
"keyword.operator.arithmetic.flint",
"keyword.operator.logical.flint",
"keyword.operator.assignment.flint"
],
"settings": {
"foreground": "#c781b0"
}
},
{
"scope": "punctuation.accessor",
"settings": {
"foreground": "#ff0000"
}
},
{
"scope": "punctuation.separator",
"settings": {
"foreground": "#ff00bf"
}
},
{
"name": "Keywords, Punctuation",
"scope": [
"keyword.control",
"punctuation.definition.parameters",
"punctuation.section.parens.begin",
"punctuation.definition.array"
],
"settings": {
"foreground": "#00BCD4"
}
},
{
"name": "Keywords for func and visibility",
"scope": [
"storage.type"
],
"settings": {
"foreground": "#3cd400"
}
},
{
"name": "Keywords for storage modification",
"scope": [
"storage.modifier"
],
"settings": {
"foreground": "#d400b8"
}
},
{
"name": "Constants",
"scope": [
"constant.numeric",
"constant.language",
"support.type.primitive"
],
"settings": {
"foreground": "#F9A825"
}
},
{
"name": "Strings",
"scope": [
"string",
"constant.other.symbol"
],
"settings": {
"foreground": "#fb5d2d"
}
},
{
"name": "Quotes",
"scope": [
"punctuation.definition.string.begin",
"punctuation.definition.string.end"
],
"settings": {
"foreground": "#00BCD4"
}
},
{
"name": "Variables",
"scope": [
"variable.language",
"varible.other"
],
"settings": {
"foreground": "#ea80d8"
}
}
]
}