herm-tui 1.7.1 → 1.7.2-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/package.json +1 -1
  2. package/themes/ares.json +233 -0
  3. package/themes/aura.json +69 -0
  4. package/themes/ayu.json +80 -0
  5. package/themes/carbonfox.json +248 -0
  6. package/themes/catppuccin-frappe.json +233 -0
  7. package/themes/catppuccin-macchiato.json +233 -0
  8. package/themes/catppuccin.json +112 -0
  9. package/themes/charizard.json +233 -0
  10. package/themes/cobalt2.json +228 -0
  11. package/themes/cursor.json +249 -0
  12. package/themes/daylight.json +233 -0
  13. package/themes/default.json +233 -0
  14. package/themes/dracula.json +219 -0
  15. package/themes/everforest.json +241 -0
  16. package/themes/flexoki.json +237 -0
  17. package/themes/github.json +233 -0
  18. package/themes/gruvbox.json +242 -0
  19. package/themes/kanagawa.json +77 -0
  20. package/themes/lucent-orng.json +237 -0
  21. package/themes/material.json +235 -0
  22. package/themes/matrix.json +77 -0
  23. package/themes/mercury.json +252 -0
  24. package/themes/mono.json +233 -0
  25. package/themes/monokai.json +221 -0
  26. package/themes/nightowl.json +221 -0
  27. package/themes/nord.json +223 -0
  28. package/themes/one-dark.json +84 -0
  29. package/themes/opencode.json +245 -0
  30. package/themes/orng.json +249 -0
  31. package/themes/osaka-jade.json +93 -0
  32. package/themes/palenight.json +222 -0
  33. package/themes/poseidon.json +233 -0
  34. package/themes/rosepine.json +234 -0
  35. package/themes/sisyphus.json +233 -0
  36. package/themes/slate.json +233 -0
  37. package/themes/solarized.json +223 -0
  38. package/themes/synthwave84.json +226 -0
  39. package/themes/tokyonight.json +243 -0
  40. package/themes/vercel.json +245 -0
  41. package/themes/vesper.json +218 -0
  42. package/themes/warm-lightmode.json +233 -0
  43. package/themes/zenburn.json +223 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "herm-tui",
3
- "version": "1.7.1",
3
+ "version": "1.7.2-dev.1",
4
4
  "description": "A modern TUI for Hermes Agent",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -0,0 +1,233 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "aresBgDark": "#2A1212",
5
+ "aresPanelDark": "#351717",
6
+ "aresElemDark": "#3F1B1B",
7
+ "aresTextDark": "#F1E6CF",
8
+ "aresMutedDark": "#6E584B",
9
+ "aresPrimaryDark": "#C7A96B",
10
+ "aresAccentDark": "#DD4A3A",
11
+ "aresSecondaryDark": "#C7A96B",
12
+ "aresBorderDark": "#9F1C1C",
13
+ "aresBorderSubtleDark": "#6E584B",
14
+ "aresBgLight": "#F8F8F8",
15
+ "aresPanelLight": "#EFEFEF",
16
+ "aresElemLight": "#E4E4E4",
17
+ "aresTextLight": "#1A1A1A",
18
+ "aresMutedLight": "#5A5A5A",
19
+ "aresPrimaryLight": "#8D7035",
20
+ "aresAccentLight": "#DD4A3A",
21
+ "aresSecondaryLight": "#8D7035",
22
+ "aresBorderLight": "#D0D0D0",
23
+ "aresBorderSubtleLight": "#E0E0E0",
24
+ "aresOkDark": "#4caf50",
25
+ "aresErrorDark": "#ef5350",
26
+ "aresWarnDark": "#ffa726",
27
+ "aresOkLight": "#4caf50",
28
+ "aresErrorLight": "#ef5350",
29
+ "aresWarnLight": "#A56200"
30
+ },
31
+ "theme": {
32
+ "primary": {
33
+ "dark": "aresPrimaryDark",
34
+ "light": "aresPrimaryLight"
35
+ },
36
+ "secondary": {
37
+ "dark": "aresSecondaryDark",
38
+ "light": "aresSecondaryLight"
39
+ },
40
+ "accent": {
41
+ "dark": "aresAccentDark",
42
+ "light": "aresAccentLight"
43
+ },
44
+ "error": {
45
+ "dark": "aresErrorDark",
46
+ "light": "aresErrorLight"
47
+ },
48
+ "warning": {
49
+ "dark": "aresWarnDark",
50
+ "light": "aresWarnLight"
51
+ },
52
+ "success": {
53
+ "dark": "aresOkDark",
54
+ "light": "aresOkLight"
55
+ },
56
+ "info": {
57
+ "dark": "aresAccentDark",
58
+ "light": "aresAccentLight"
59
+ },
60
+ "text": {
61
+ "dark": "aresTextDark",
62
+ "light": "aresTextLight"
63
+ },
64
+ "textMuted": {
65
+ "dark": "aresMutedDark",
66
+ "light": "aresMutedLight"
67
+ },
68
+ "background": {
69
+ "dark": "aresBgDark",
70
+ "light": "aresBgLight"
71
+ },
72
+ "backgroundPanel": {
73
+ "dark": "aresPanelDark",
74
+ "light": "aresPanelLight"
75
+ },
76
+ "backgroundElement": {
77
+ "dark": "aresElemDark",
78
+ "light": "aresElemLight"
79
+ },
80
+ "border": {
81
+ "dark": "aresBorderDark",
82
+ "light": "aresBorderLight"
83
+ },
84
+ "borderActive": {
85
+ "dark": "aresAccentDark",
86
+ "light": "aresAccentLight"
87
+ },
88
+ "borderSubtle": {
89
+ "dark": "aresBorderSubtleDark",
90
+ "light": "aresBorderSubtleLight"
91
+ },
92
+ "diffAdded": {
93
+ "dark": "aresOkDark",
94
+ "light": "aresOkLight"
95
+ },
96
+ "diffRemoved": {
97
+ "dark": "aresErrorDark",
98
+ "light": "aresErrorLight"
99
+ },
100
+ "diffContext": {
101
+ "dark": "aresMutedDark",
102
+ "light": "aresMutedLight"
103
+ },
104
+ "diffHunkHeader": {
105
+ "dark": "aresMutedDark",
106
+ "light": "aresMutedLight"
107
+ },
108
+ "diffHighlightAdded": {
109
+ "dark": "aresOkDark",
110
+ "light": "aresOkLight"
111
+ },
112
+ "diffHighlightRemoved": {
113
+ "dark": "aresErrorDark",
114
+ "light": "aresErrorLight"
115
+ },
116
+ "diffAddedBg": {
117
+ "dark": "#302E1D",
118
+ "light": "#DEEDDF"
119
+ },
120
+ "diffRemovedBg": {
121
+ "dark": "#4D1E1D",
122
+ "light": "#F7DFDF"
123
+ },
124
+ "diffContextBg": {
125
+ "dark": "aresPanelDark",
126
+ "light": "aresPanelLight"
127
+ },
128
+ "diffLineNumber": {
129
+ "dark": "aresMutedDark",
130
+ "light": "aresMutedLight"
131
+ },
132
+ "diffAddedLineNumberBg": {
133
+ "dark": "#2D2218",
134
+ "light": "#EAF2EB"
135
+ },
136
+ "diffRemovedLineNumberBg": {
137
+ "dark": "#3E1818",
138
+ "light": "#F7EBEB"
139
+ },
140
+ "markdownText": {
141
+ "dark": "aresTextDark",
142
+ "light": "aresTextLight"
143
+ },
144
+ "markdownHeading": {
145
+ "dark": "aresPrimaryDark",
146
+ "light": "aresPrimaryLight"
147
+ },
148
+ "markdownLink": {
149
+ "dark": "aresAccentDark",
150
+ "light": "aresAccentLight"
151
+ },
152
+ "markdownLinkText": {
153
+ "dark": "aresSecondaryDark",
154
+ "light": "aresSecondaryLight"
155
+ },
156
+ "markdownCode": {
157
+ "dark": "aresSecondaryDark",
158
+ "light": "aresSecondaryLight"
159
+ },
160
+ "markdownBlockQuote": {
161
+ "dark": "aresMutedDark",
162
+ "light": "aresMutedLight"
163
+ },
164
+ "markdownEmph": {
165
+ "dark": "aresAccentDark",
166
+ "light": "aresAccentLight"
167
+ },
168
+ "markdownStrong": {
169
+ "dark": "aresPrimaryDark",
170
+ "light": "aresPrimaryLight"
171
+ },
172
+ "markdownHorizontalRule": {
173
+ "dark": "aresBorderDark",
174
+ "light": "aresBorderLight"
175
+ },
176
+ "markdownListItem": {
177
+ "dark": "aresTextDark",
178
+ "light": "aresTextLight"
179
+ },
180
+ "markdownListEnumeration": {
181
+ "dark": "aresAccentDark",
182
+ "light": "aresAccentLight"
183
+ },
184
+ "markdownImage": {
185
+ "dark": "aresAccentDark",
186
+ "light": "aresAccentLight"
187
+ },
188
+ "markdownImageText": {
189
+ "dark": "aresMutedDark",
190
+ "light": "aresMutedLight"
191
+ },
192
+ "markdownCodeBlock": {
193
+ "dark": "aresTextDark",
194
+ "light": "aresTextLight"
195
+ },
196
+ "syntaxComment": {
197
+ "dark": "aresMutedDark",
198
+ "light": "aresMutedLight"
199
+ },
200
+ "syntaxKeyword": {
201
+ "dark": "aresAccentDark",
202
+ "light": "aresAccentLight"
203
+ },
204
+ "syntaxFunction": {
205
+ "dark": "aresPrimaryDark",
206
+ "light": "aresPrimaryLight"
207
+ },
208
+ "syntaxVariable": {
209
+ "dark": "aresTextDark",
210
+ "light": "aresTextLight"
211
+ },
212
+ "syntaxString": {
213
+ "dark": "aresOkDark",
214
+ "light": "aresOkLight"
215
+ },
216
+ "syntaxNumber": {
217
+ "dark": "aresAccentDark",
218
+ "light": "aresAccentLight"
219
+ },
220
+ "syntaxType": {
221
+ "dark": "aresSecondaryDark",
222
+ "light": "aresSecondaryLight"
223
+ },
224
+ "syntaxOperator": {
225
+ "dark": "aresSecondaryDark",
226
+ "light": "aresSecondaryLight"
227
+ },
228
+ "syntaxPunctuation": {
229
+ "dark": "aresTextDark",
230
+ "light": "aresTextLight"
231
+ }
232
+ }
233
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkBg": "#0f0f0f",
5
+ "darkBgPanel": "#15141b",
6
+ "darkBorder": "#2d2d2d",
7
+ "darkFgMuted": "#6d6d6d",
8
+ "darkFg": "#edecee",
9
+ "purple": "#a277ff",
10
+ "pink": "#f694ff",
11
+ "blue": "#82e2ff",
12
+ "red": "#ff6767",
13
+ "orange": "#ffca85",
14
+ "cyan": "#61ffca",
15
+ "green": "#9dff65"
16
+ },
17
+ "theme": {
18
+ "primary": "purple",
19
+ "secondary": "pink",
20
+ "accent": "purple",
21
+ "error": "red",
22
+ "warning": "orange",
23
+ "success": "cyan",
24
+ "info": "purple",
25
+ "text": "darkFg",
26
+ "textMuted": "darkFgMuted",
27
+ "background": "darkBg",
28
+ "backgroundPanel": "darkBgPanel",
29
+ "backgroundElement": "darkBgPanel",
30
+ "border": "darkBorder",
31
+ "borderActive": "darkFgMuted",
32
+ "borderSubtle": "darkBorder",
33
+ "diffAdded": "cyan",
34
+ "diffRemoved": "red",
35
+ "diffContext": "darkFgMuted",
36
+ "diffHunkHeader": "darkFgMuted",
37
+ "diffHighlightAdded": "cyan",
38
+ "diffHighlightRemoved": "red",
39
+ "diffAddedBg": "#354933",
40
+ "diffRemovedBg": "#3f191a",
41
+ "diffContextBg": "darkBgPanel",
42
+ "diffLineNumber": "darkBorder",
43
+ "diffAddedLineNumberBg": "#162620",
44
+ "diffRemovedLineNumberBg": "#26161a",
45
+ "markdownText": "darkFg",
46
+ "markdownHeading": "purple",
47
+ "markdownLink": "pink",
48
+ "markdownLinkText": "purple",
49
+ "markdownCode": "cyan",
50
+ "markdownBlockQuote": "darkFgMuted",
51
+ "markdownEmph": "orange",
52
+ "markdownStrong": "purple",
53
+ "markdownHorizontalRule": "darkFgMuted",
54
+ "markdownListItem": "purple",
55
+ "markdownListEnumeration": "purple",
56
+ "markdownImage": "pink",
57
+ "markdownImageText": "purple",
58
+ "markdownCodeBlock": "darkFg",
59
+ "syntaxComment": "darkFgMuted",
60
+ "syntaxKeyword": "pink",
61
+ "syntaxFunction": "purple",
62
+ "syntaxVariable": "purple",
63
+ "syntaxString": "cyan",
64
+ "syntaxNumber": "green",
65
+ "syntaxType": "purple",
66
+ "syntaxOperator": "pink",
67
+ "syntaxPunctuation": "darkFg"
68
+ }
69
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkBg": "#0B0E14",
5
+ "darkBgAlt": "#0D1017",
6
+ "darkLine": "#11151C",
7
+ "darkPanel": "#0F131A",
8
+ "darkFg": "#BFBDB6",
9
+ "darkFgMuted": "#565B66",
10
+ "darkGutter": "#6C7380",
11
+ "darkTag": "#39BAE6",
12
+ "darkFunc": "#FFB454",
13
+ "darkEntity": "#59C2FF",
14
+ "darkString": "#AAD94C",
15
+ "darkRegexp": "#95E6CB",
16
+ "darkMarkup": "#F07178",
17
+ "darkKeyword": "#FF8F40",
18
+ "darkSpecial": "#E6B673",
19
+ "darkComment": "#ACB6BF",
20
+ "darkConstant": "#D2A6FF",
21
+ "darkOperator": "#F29668",
22
+ "darkAdded": "#7FD962",
23
+ "darkRemoved": "#F26D78",
24
+ "darkAccent": "#E6B450",
25
+ "darkError": "#D95757",
26
+ "darkIndentActive": "#6C7380"
27
+ },
28
+ "theme": {
29
+ "primary": "darkEntity",
30
+ "secondary": "darkConstant",
31
+ "accent": "darkAccent",
32
+ "error": "darkError",
33
+ "warning": "darkSpecial",
34
+ "success": "darkAdded",
35
+ "info": "darkTag",
36
+ "text": "darkFg",
37
+ "textMuted": "darkFgMuted",
38
+ "background": "darkBg",
39
+ "backgroundPanel": "darkPanel",
40
+ "backgroundElement": "darkBgAlt",
41
+ "border": "darkGutter",
42
+ "borderActive": "darkIndentActive",
43
+ "borderSubtle": "darkLine",
44
+ "diffAdded": "darkAdded",
45
+ "diffRemoved": "darkRemoved",
46
+ "diffContext": "darkComment",
47
+ "diffHunkHeader": "darkComment",
48
+ "diffHighlightAdded": "darkString",
49
+ "diffHighlightRemoved": "darkMarkup",
50
+ "diffAddedBg": "#20303b",
51
+ "diffRemovedBg": "#37222c",
52
+ "diffContextBg": "darkPanel",
53
+ "diffLineNumber": "darkGutter",
54
+ "diffAddedLineNumberBg": "#1b2b34",
55
+ "diffRemovedLineNumberBg": "#2d1f26",
56
+ "markdownText": "darkFg",
57
+ "markdownHeading": "darkConstant",
58
+ "markdownLink": "darkEntity",
59
+ "markdownLinkText": "darkTag",
60
+ "markdownCode": "darkString",
61
+ "markdownBlockQuote": "darkSpecial",
62
+ "markdownEmph": "darkSpecial",
63
+ "markdownStrong": "darkFunc",
64
+ "markdownHorizontalRule": "darkFgMuted",
65
+ "markdownListItem": "darkEntity",
66
+ "markdownListEnumeration": "darkTag",
67
+ "markdownImage": "darkEntity",
68
+ "markdownImageText": "darkTag",
69
+ "markdownCodeBlock": "darkFg",
70
+ "syntaxComment": "darkComment",
71
+ "syntaxKeyword": "darkKeyword",
72
+ "syntaxFunction": "darkFunc",
73
+ "syntaxVariable": "darkEntity",
74
+ "syntaxString": "darkString",
75
+ "syntaxNumber": "darkConstant",
76
+ "syntaxType": "darkSpecial",
77
+ "syntaxOperator": "darkOperator",
78
+ "syntaxPunctuation": "darkFg"
79
+ }
80
+ }
@@ -0,0 +1,248 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "bg0": "#0d0d0d",
5
+ "bg1": "#161616",
6
+ "bg1a": "#1a1a1a",
7
+ "bg2": "#1e1e1e",
8
+ "bg3": "#262626",
9
+ "bg4": "#303030",
10
+ "fg0": "#ffffff",
11
+ "fg1": "#f2f4f8",
12
+ "fg2": "#a9afbc",
13
+ "fg3": "#7d848f",
14
+ "lbg0": "#ffffff",
15
+ "lbg1": "#f4f4f4",
16
+ "lbg2": "#e8e8e8",
17
+ "lbg3": "#dcdcdc",
18
+ "lfg0": "#000000",
19
+ "lfg1": "#161616",
20
+ "lfg2": "#525252",
21
+ "lfg3": "#6f6f6f",
22
+ "red": "#ee5396",
23
+ "green": "#25be6a",
24
+ "yellow": "#08bdba",
25
+ "blue": "#78a9ff",
26
+ "magenta": "#be95ff",
27
+ "cyan": "#33b1ff",
28
+ "white": "#dfdfe0",
29
+ "orange": "#3ddbd9",
30
+ "pink": "#ff7eb6",
31
+ "blueBright": "#8cb6ff",
32
+ "cyanBright": "#52c7ff",
33
+ "greenBright": "#46c880",
34
+ "redLight": "#9f1853",
35
+ "greenLight": "#198038",
36
+ "yellowLight": "#007d79",
37
+ "blueLight": "#0043ce",
38
+ "magentaLight": "#6929c4",
39
+ "cyanLight": "#0072c3",
40
+ "warning": "#f1c21b",
41
+ "diffGreen": "#50fa7b",
42
+ "diffRed": "#ff6b6b",
43
+ "diffGreenBg": "#0f2418",
44
+ "diffRedBg": "#2a1216"
45
+ },
46
+ "theme": {
47
+ "primary": {
48
+ "dark": "cyan",
49
+ "light": "blueLight"
50
+ },
51
+ "secondary": {
52
+ "dark": "blue",
53
+ "light": "blueLight"
54
+ },
55
+ "accent": {
56
+ "dark": "pink",
57
+ "light": "redLight"
58
+ },
59
+ "error": {
60
+ "dark": "red",
61
+ "light": "redLight"
62
+ },
63
+ "warning": {
64
+ "dark": "warning",
65
+ "light": "yellowLight"
66
+ },
67
+ "success": {
68
+ "dark": "green",
69
+ "light": "greenLight"
70
+ },
71
+ "info": {
72
+ "dark": "blue",
73
+ "light": "blueLight"
74
+ },
75
+ "text": {
76
+ "dark": "fg1",
77
+ "light": "lfg1"
78
+ },
79
+ "textMuted": {
80
+ "dark": "fg3",
81
+ "light": "lfg3"
82
+ },
83
+ "background": {
84
+ "dark": "bg1",
85
+ "light": "lbg0"
86
+ },
87
+ "backgroundPanel": {
88
+ "dark": "bg1a",
89
+ "light": "lbg1"
90
+ },
91
+ "backgroundElement": {
92
+ "dark": "bg2",
93
+ "light": "lbg1"
94
+ },
95
+ "border": {
96
+ "dark": "bg4",
97
+ "light": "lbg3"
98
+ },
99
+ "borderActive": {
100
+ "dark": "cyan",
101
+ "light": "blueLight"
102
+ },
103
+ "borderSubtle": {
104
+ "dark": "bg3",
105
+ "light": "lbg2"
106
+ },
107
+ "diffAdded": {
108
+ "dark": "diffGreen",
109
+ "light": "greenLight"
110
+ },
111
+ "diffRemoved": {
112
+ "dark": "diffRed",
113
+ "light": "redLight"
114
+ },
115
+ "diffContext": {
116
+ "dark": "fg3",
117
+ "light": "lfg3"
118
+ },
119
+ "diffHunkHeader": {
120
+ "dark": "blue",
121
+ "light": "blueLight"
122
+ },
123
+ "diffHighlightAdded": {
124
+ "dark": "#7dffaa",
125
+ "light": "greenLight"
126
+ },
127
+ "diffHighlightRemoved": {
128
+ "dark": "#ff9999",
129
+ "light": "redLight"
130
+ },
131
+ "diffAddedBg": {
132
+ "dark": "diffGreenBg",
133
+ "light": "#defbe6"
134
+ },
135
+ "diffRemovedBg": {
136
+ "dark": "diffRedBg",
137
+ "light": "#fff1f1"
138
+ },
139
+ "diffContextBg": {
140
+ "dark": "bg1",
141
+ "light": "lbg1"
142
+ },
143
+ "diffLineNumber": {
144
+ "dark": "fg3",
145
+ "light": "lfg3"
146
+ },
147
+ "diffAddedLineNumberBg": {
148
+ "dark": "diffGreenBg",
149
+ "light": "#defbe6"
150
+ },
151
+ "diffRemovedLineNumberBg": {
152
+ "dark": "diffRedBg",
153
+ "light": "#fff1f1"
154
+ },
155
+ "markdownText": {
156
+ "dark": "fg1",
157
+ "light": "lfg1"
158
+ },
159
+ "markdownHeading": {
160
+ "dark": "blueBright",
161
+ "light": "blueLight"
162
+ },
163
+ "markdownLink": {
164
+ "dark": "blue",
165
+ "light": "blueLight"
166
+ },
167
+ "markdownLinkText": {
168
+ "dark": "cyan",
169
+ "light": "cyanLight"
170
+ },
171
+ "markdownCode": {
172
+ "dark": "green",
173
+ "light": "greenLight"
174
+ },
175
+ "markdownBlockQuote": {
176
+ "dark": "fg3",
177
+ "light": "lfg3"
178
+ },
179
+ "markdownEmph": {
180
+ "dark": "magenta",
181
+ "light": "magentaLight"
182
+ },
183
+ "markdownStrong": {
184
+ "dark": "fg0",
185
+ "light": "lfg0"
186
+ },
187
+ "markdownHorizontalRule": {
188
+ "dark": "bg4",
189
+ "light": "lbg3"
190
+ },
191
+ "markdownListItem": {
192
+ "dark": "cyan",
193
+ "light": "cyanLight"
194
+ },
195
+ "markdownListEnumeration": {
196
+ "dark": "cyan",
197
+ "light": "cyanLight"
198
+ },
199
+ "markdownImage": {
200
+ "dark": "blue",
201
+ "light": "blueLight"
202
+ },
203
+ "markdownImageText": {
204
+ "dark": "cyan",
205
+ "light": "cyanLight"
206
+ },
207
+ "markdownCodeBlock": {
208
+ "dark": "fg2",
209
+ "light": "lfg2"
210
+ },
211
+ "syntaxComment": {
212
+ "dark": "fg3",
213
+ "light": "lfg3"
214
+ },
215
+ "syntaxKeyword": {
216
+ "dark": "magenta",
217
+ "light": "magentaLight"
218
+ },
219
+ "syntaxFunction": {
220
+ "dark": "blueBright",
221
+ "light": "blueLight"
222
+ },
223
+ "syntaxVariable": {
224
+ "dark": "white",
225
+ "light": "lfg1"
226
+ },
227
+ "syntaxString": {
228
+ "dark": "green",
229
+ "light": "greenLight"
230
+ },
231
+ "syntaxNumber": {
232
+ "dark": "orange",
233
+ "light": "yellowLight"
234
+ },
235
+ "syntaxType": {
236
+ "dark": "yellow",
237
+ "light": "yellowLight"
238
+ },
239
+ "syntaxOperator": {
240
+ "dark": "fg2",
241
+ "light": "lfg2"
242
+ },
243
+ "syntaxPunctuation": {
244
+ "dark": "fg2",
245
+ "light": "lfg1"
246
+ }
247
+ }
248
+ }