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
@@ -0,0 +1,233 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "poseidonBgDark": "#0F2440",
5
+ "poseidonPanelDark": "#122B4C",
6
+ "poseidonElemDark": "#153259",
7
+ "poseidonTextDark": "#EAF7FF",
8
+ "poseidonMutedDark": "#496884",
9
+ "poseidonPrimaryDark": "#A9DFFF",
10
+ "poseidonAccentDark": "#5DB8F5",
11
+ "poseidonSecondaryDark": "#A9DFFF",
12
+ "poseidonBorderDark": "#2A6FB9",
13
+ "poseidonBorderSubtleDark": "#496884",
14
+ "poseidonBgLight": "#F8F8F8",
15
+ "poseidonPanelLight": "#EFEFEF",
16
+ "poseidonElemLight": "#E4E4E4",
17
+ "poseidonTextLight": "#1A1A1A",
18
+ "poseidonMutedLight": "#5A5A5A",
19
+ "poseidonPrimaryLight": "#009AF5",
20
+ "poseidonAccentLight": "#0D85D5",
21
+ "poseidonSecondaryLight": "#009AF5",
22
+ "poseidonBorderLight": "#D0D0D0",
23
+ "poseidonBorderSubtleLight": "#E0E0E0",
24
+ "poseidonOkDark": "#4caf50",
25
+ "poseidonErrorDark": "#ef5350",
26
+ "poseidonWarnDark": "#ffa726",
27
+ "poseidonOkLight": "#4caf50",
28
+ "poseidonErrorLight": "#ef5350",
29
+ "poseidonWarnLight": "#A56200"
30
+ },
31
+ "theme": {
32
+ "primary": {
33
+ "dark": "poseidonPrimaryDark",
34
+ "light": "poseidonPrimaryLight"
35
+ },
36
+ "secondary": {
37
+ "dark": "poseidonSecondaryDark",
38
+ "light": "poseidonSecondaryLight"
39
+ },
40
+ "accent": {
41
+ "dark": "poseidonAccentDark",
42
+ "light": "poseidonAccentLight"
43
+ },
44
+ "error": {
45
+ "dark": "poseidonErrorDark",
46
+ "light": "poseidonErrorLight"
47
+ },
48
+ "warning": {
49
+ "dark": "poseidonWarnDark",
50
+ "light": "poseidonWarnLight"
51
+ },
52
+ "success": {
53
+ "dark": "poseidonOkDark",
54
+ "light": "poseidonOkLight"
55
+ },
56
+ "info": {
57
+ "dark": "poseidonAccentDark",
58
+ "light": "poseidonAccentLight"
59
+ },
60
+ "text": {
61
+ "dark": "poseidonTextDark",
62
+ "light": "poseidonTextLight"
63
+ },
64
+ "textMuted": {
65
+ "dark": "poseidonMutedDark",
66
+ "light": "poseidonMutedLight"
67
+ },
68
+ "background": {
69
+ "dark": "poseidonBgDark",
70
+ "light": "poseidonBgLight"
71
+ },
72
+ "backgroundPanel": {
73
+ "dark": "poseidonPanelDark",
74
+ "light": "poseidonPanelLight"
75
+ },
76
+ "backgroundElement": {
77
+ "dark": "poseidonElemDark",
78
+ "light": "poseidonElemLight"
79
+ },
80
+ "border": {
81
+ "dark": "poseidonBorderDark",
82
+ "light": "poseidonBorderLight"
83
+ },
84
+ "borderActive": {
85
+ "dark": "poseidonAccentDark",
86
+ "light": "poseidonAccentLight"
87
+ },
88
+ "borderSubtle": {
89
+ "dark": "poseidonBorderSubtleDark",
90
+ "light": "poseidonBorderSubtleLight"
91
+ },
92
+ "diffAdded": {
93
+ "dark": "poseidonOkDark",
94
+ "light": "poseidonOkLight"
95
+ },
96
+ "diffRemoved": {
97
+ "dark": "poseidonErrorDark",
98
+ "light": "poseidonErrorLight"
99
+ },
100
+ "diffContext": {
101
+ "dark": "poseidonMutedDark",
102
+ "light": "poseidonMutedLight"
103
+ },
104
+ "diffHunkHeader": {
105
+ "dark": "poseidonMutedDark",
106
+ "light": "poseidonMutedLight"
107
+ },
108
+ "diffHighlightAdded": {
109
+ "dark": "poseidonOkDark",
110
+ "light": "poseidonOkLight"
111
+ },
112
+ "diffHighlightRemoved": {
113
+ "dark": "poseidonErrorDark",
114
+ "light": "poseidonErrorLight"
115
+ },
116
+ "diffAddedBg": {
117
+ "dark": "#1A3D43",
118
+ "light": "#DEEDDF"
119
+ },
120
+ "diffRemovedBg": {
121
+ "dark": "#372C43",
122
+ "light": "#F7DFDF"
123
+ },
124
+ "diffContextBg": {
125
+ "dark": "poseidonPanelDark",
126
+ "light": "poseidonPanelLight"
127
+ },
128
+ "diffLineNumber": {
129
+ "dark": "poseidonMutedDark",
130
+ "light": "poseidonMutedLight"
131
+ },
132
+ "diffAddedLineNumberBg": {
133
+ "dark": "#153242",
134
+ "light": "#EAF2EB"
135
+ },
136
+ "diffRemovedLineNumberBg": {
137
+ "dark": "#252942",
138
+ "light": "#F7EBEB"
139
+ },
140
+ "markdownText": {
141
+ "dark": "poseidonTextDark",
142
+ "light": "poseidonTextLight"
143
+ },
144
+ "markdownHeading": {
145
+ "dark": "poseidonPrimaryDark",
146
+ "light": "poseidonPrimaryLight"
147
+ },
148
+ "markdownLink": {
149
+ "dark": "poseidonAccentDark",
150
+ "light": "poseidonAccentLight"
151
+ },
152
+ "markdownLinkText": {
153
+ "dark": "poseidonSecondaryDark",
154
+ "light": "poseidonSecondaryLight"
155
+ },
156
+ "markdownCode": {
157
+ "dark": "poseidonSecondaryDark",
158
+ "light": "poseidonSecondaryLight"
159
+ },
160
+ "markdownBlockQuote": {
161
+ "dark": "poseidonMutedDark",
162
+ "light": "poseidonMutedLight"
163
+ },
164
+ "markdownEmph": {
165
+ "dark": "poseidonAccentDark",
166
+ "light": "poseidonAccentLight"
167
+ },
168
+ "markdownStrong": {
169
+ "dark": "poseidonPrimaryDark",
170
+ "light": "poseidonPrimaryLight"
171
+ },
172
+ "markdownHorizontalRule": {
173
+ "dark": "poseidonBorderDark",
174
+ "light": "poseidonBorderLight"
175
+ },
176
+ "markdownListItem": {
177
+ "dark": "poseidonTextDark",
178
+ "light": "poseidonTextLight"
179
+ },
180
+ "markdownListEnumeration": {
181
+ "dark": "poseidonAccentDark",
182
+ "light": "poseidonAccentLight"
183
+ },
184
+ "markdownImage": {
185
+ "dark": "poseidonAccentDark",
186
+ "light": "poseidonAccentLight"
187
+ },
188
+ "markdownImageText": {
189
+ "dark": "poseidonMutedDark",
190
+ "light": "poseidonMutedLight"
191
+ },
192
+ "markdownCodeBlock": {
193
+ "dark": "poseidonTextDark",
194
+ "light": "poseidonTextLight"
195
+ },
196
+ "syntaxComment": {
197
+ "dark": "poseidonMutedDark",
198
+ "light": "poseidonMutedLight"
199
+ },
200
+ "syntaxKeyword": {
201
+ "dark": "poseidonAccentDark",
202
+ "light": "poseidonAccentLight"
203
+ },
204
+ "syntaxFunction": {
205
+ "dark": "poseidonPrimaryDark",
206
+ "light": "poseidonPrimaryLight"
207
+ },
208
+ "syntaxVariable": {
209
+ "dark": "poseidonTextDark",
210
+ "light": "poseidonTextLight"
211
+ },
212
+ "syntaxString": {
213
+ "dark": "poseidonOkDark",
214
+ "light": "poseidonOkLight"
215
+ },
216
+ "syntaxNumber": {
217
+ "dark": "poseidonAccentDark",
218
+ "light": "poseidonAccentLight"
219
+ },
220
+ "syntaxType": {
221
+ "dark": "poseidonSecondaryDark",
222
+ "light": "poseidonSecondaryLight"
223
+ },
224
+ "syntaxOperator": {
225
+ "dark": "poseidonSecondaryDark",
226
+ "light": "poseidonSecondaryLight"
227
+ },
228
+ "syntaxPunctuation": {
229
+ "dark": "poseidonTextDark",
230
+ "light": "poseidonTextLight"
231
+ }
232
+ }
233
+ }
@@ -0,0 +1,234 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "base": "#191724",
5
+ "surface": "#1f1d2e",
6
+ "overlay": "#26233a",
7
+ "muted": "#6e6a86",
8
+ "subtle": "#908caa",
9
+ "text": "#e0def4",
10
+ "love": "#eb6f92",
11
+ "gold": "#f6c177",
12
+ "rose": "#ebbcba",
13
+ "pine": "#31748f",
14
+ "foam": "#9ccfd8",
15
+ "iris": "#c4a7e7",
16
+ "highlightLow": "#21202e",
17
+ "highlightMed": "#403d52",
18
+ "highlightHigh": "#524f67",
19
+ "moonBase": "#232136",
20
+ "moonSurface": "#2a273f",
21
+ "moonOverlay": "#393552",
22
+ "moonMuted": "#6e6a86",
23
+ "moonSubtle": "#908caa",
24
+ "moonText": "#e0def4",
25
+ "dawnBase": "#faf4ed",
26
+ "dawnSurface": "#fffaf3",
27
+ "dawnOverlay": "#f2e9e1",
28
+ "dawnMuted": "#9893a5",
29
+ "dawnSubtle": "#797593",
30
+ "dawnText": "#575279"
31
+ },
32
+ "theme": {
33
+ "primary": {
34
+ "dark": "foam",
35
+ "light": "pine"
36
+ },
37
+ "secondary": {
38
+ "dark": "iris",
39
+ "light": "#907aa9"
40
+ },
41
+ "accent": {
42
+ "dark": "rose",
43
+ "light": "#d7827e"
44
+ },
45
+ "error": {
46
+ "dark": "love",
47
+ "light": "#b4637a"
48
+ },
49
+ "warning": {
50
+ "dark": "gold",
51
+ "light": "#ea9d34"
52
+ },
53
+ "success": {
54
+ "dark": "pine",
55
+ "light": "#286983"
56
+ },
57
+ "info": {
58
+ "dark": "foam",
59
+ "light": "#56949f"
60
+ },
61
+ "text": {
62
+ "dark": "#e0def4",
63
+ "light": "#575279"
64
+ },
65
+ "textMuted": {
66
+ "dark": "muted",
67
+ "light": "dawnMuted"
68
+ },
69
+ "background": {
70
+ "dark": "base",
71
+ "light": "dawnBase"
72
+ },
73
+ "backgroundPanel": {
74
+ "dark": "surface",
75
+ "light": "dawnSurface"
76
+ },
77
+ "backgroundElement": {
78
+ "dark": "overlay",
79
+ "light": "dawnOverlay"
80
+ },
81
+ "border": {
82
+ "dark": "highlightMed",
83
+ "light": "#dfdad9"
84
+ },
85
+ "borderActive": {
86
+ "dark": "foam",
87
+ "light": "pine"
88
+ },
89
+ "borderSubtle": {
90
+ "dark": "highlightLow",
91
+ "light": "#f4ede8"
92
+ },
93
+ "diffAdded": {
94
+ "dark": "pine",
95
+ "light": "#286983"
96
+ },
97
+ "diffRemoved": {
98
+ "dark": "love",
99
+ "light": "#b4637a"
100
+ },
101
+ "diffContext": {
102
+ "dark": "muted",
103
+ "light": "dawnMuted"
104
+ },
105
+ "diffHunkHeader": {
106
+ "dark": "iris",
107
+ "light": "#907aa9"
108
+ },
109
+ "diffHighlightAdded": {
110
+ "dark": "pine",
111
+ "light": "#286983"
112
+ },
113
+ "diffHighlightRemoved": {
114
+ "dark": "love",
115
+ "light": "#b4637a"
116
+ },
117
+ "diffAddedBg": {
118
+ "dark": "#1f2d3a",
119
+ "light": "#e5f2f3"
120
+ },
121
+ "diffRemovedBg": {
122
+ "dark": "#3a1f2d",
123
+ "light": "#fce5e8"
124
+ },
125
+ "diffContextBg": {
126
+ "dark": "surface",
127
+ "light": "dawnSurface"
128
+ },
129
+ "diffLineNumber": {
130
+ "dark": "muted",
131
+ "light": "dawnMuted"
132
+ },
133
+ "diffAddedLineNumberBg": {
134
+ "dark": "#1f2d3a",
135
+ "light": "#e5f2f3"
136
+ },
137
+ "diffRemovedLineNumberBg": {
138
+ "dark": "#3a1f2d",
139
+ "light": "#fce5e8"
140
+ },
141
+ "markdownText": {
142
+ "dark": "#e0def4",
143
+ "light": "#575279"
144
+ },
145
+ "markdownHeading": {
146
+ "dark": "iris",
147
+ "light": "#907aa9"
148
+ },
149
+ "markdownLink": {
150
+ "dark": "foam",
151
+ "light": "pine"
152
+ },
153
+ "markdownLinkText": {
154
+ "dark": "rose",
155
+ "light": "#d7827e"
156
+ },
157
+ "markdownCode": {
158
+ "dark": "pine",
159
+ "light": "#286983"
160
+ },
161
+ "markdownBlockQuote": {
162
+ "dark": "muted",
163
+ "light": "dawnMuted"
164
+ },
165
+ "markdownEmph": {
166
+ "dark": "gold",
167
+ "light": "#ea9d34"
168
+ },
169
+ "markdownStrong": {
170
+ "dark": "love",
171
+ "light": "#b4637a"
172
+ },
173
+ "markdownHorizontalRule": {
174
+ "dark": "highlightMed",
175
+ "light": "#dfdad9"
176
+ },
177
+ "markdownListItem": {
178
+ "dark": "foam",
179
+ "light": "pine"
180
+ },
181
+ "markdownListEnumeration": {
182
+ "dark": "rose",
183
+ "light": "#d7827e"
184
+ },
185
+ "markdownImage": {
186
+ "dark": "foam",
187
+ "light": "pine"
188
+ },
189
+ "markdownImageText": {
190
+ "dark": "rose",
191
+ "light": "#d7827e"
192
+ },
193
+ "markdownCodeBlock": {
194
+ "dark": "#e0def4",
195
+ "light": "#575279"
196
+ },
197
+ "syntaxComment": {
198
+ "dark": "muted",
199
+ "light": "dawnMuted"
200
+ },
201
+ "syntaxKeyword": {
202
+ "dark": "pine",
203
+ "light": "#286983"
204
+ },
205
+ "syntaxFunction": {
206
+ "dark": "rose",
207
+ "light": "#d7827e"
208
+ },
209
+ "syntaxVariable": {
210
+ "dark": "#e0def4",
211
+ "light": "#575279"
212
+ },
213
+ "syntaxString": {
214
+ "dark": "gold",
215
+ "light": "#ea9d34"
216
+ },
217
+ "syntaxNumber": {
218
+ "dark": "iris",
219
+ "light": "#907aa9"
220
+ },
221
+ "syntaxType": {
222
+ "dark": "foam",
223
+ "light": "#56949f"
224
+ },
225
+ "syntaxOperator": {
226
+ "dark": "subtle",
227
+ "light": "dawnSubtle"
228
+ },
229
+ "syntaxPunctuation": {
230
+ "dark": "subtle",
231
+ "light": "dawnSubtle"
232
+ }
233
+ }
234
+ }
@@ -0,0 +1,233 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "sisyphusBgDark": "#202020",
5
+ "sisyphusPanelDark": "#282828",
6
+ "sisyphusElemDark": "#2F2F2F",
7
+ "sisyphusTextDark": "#D3D3D3",
8
+ "sisyphusMutedDark": "#4A4A4A",
9
+ "sisyphusPrimaryDark": "#F5F5F5",
10
+ "sisyphusAccentDark": "#E7E7E7",
11
+ "sisyphusSecondaryDark": "#D3D3D3",
12
+ "sisyphusBorderDark": "#B7B7B7",
13
+ "sisyphusBorderSubtleDark": "#656565",
14
+ "sisyphusBgLight": "#F8F8F8",
15
+ "sisyphusPanelLight": "#EFEFEF",
16
+ "sisyphusElemLight": "#E4E4E4",
17
+ "sisyphusTextLight": "#1A1A1A",
18
+ "sisyphusMutedLight": "#5A5A5A",
19
+ "sisyphusPrimaryLight": "#9C9C9C",
20
+ "sisyphusAccentLight": "#8E8E8E",
21
+ "sisyphusSecondaryLight": "#7A7A7A",
22
+ "sisyphusBorderLight": "#D0D0D0",
23
+ "sisyphusBorderSubtleLight": "#E0E0E0",
24
+ "sisyphusOkDark": "#919191",
25
+ "sisyphusErrorDark": "#E7E7E7",
26
+ "sisyphusWarnDark": "#B7B7B7",
27
+ "sisyphusOkLight": "#919191",
28
+ "sisyphusErrorLight": "#A7A7A7",
29
+ "sisyphusWarnLight": "#777777"
30
+ },
31
+ "theme": {
32
+ "primary": {
33
+ "dark": "sisyphusPrimaryDark",
34
+ "light": "sisyphusPrimaryLight"
35
+ },
36
+ "secondary": {
37
+ "dark": "sisyphusSecondaryDark",
38
+ "light": "sisyphusSecondaryLight"
39
+ },
40
+ "accent": {
41
+ "dark": "sisyphusAccentDark",
42
+ "light": "sisyphusAccentLight"
43
+ },
44
+ "error": {
45
+ "dark": "sisyphusErrorDark",
46
+ "light": "sisyphusErrorLight"
47
+ },
48
+ "warning": {
49
+ "dark": "sisyphusWarnDark",
50
+ "light": "sisyphusWarnLight"
51
+ },
52
+ "success": {
53
+ "dark": "sisyphusOkDark",
54
+ "light": "sisyphusOkLight"
55
+ },
56
+ "info": {
57
+ "dark": "sisyphusAccentDark",
58
+ "light": "sisyphusAccentLight"
59
+ },
60
+ "text": {
61
+ "dark": "sisyphusTextDark",
62
+ "light": "sisyphusTextLight"
63
+ },
64
+ "textMuted": {
65
+ "dark": "sisyphusMutedDark",
66
+ "light": "sisyphusMutedLight"
67
+ },
68
+ "background": {
69
+ "dark": "sisyphusBgDark",
70
+ "light": "sisyphusBgLight"
71
+ },
72
+ "backgroundPanel": {
73
+ "dark": "sisyphusPanelDark",
74
+ "light": "sisyphusPanelLight"
75
+ },
76
+ "backgroundElement": {
77
+ "dark": "sisyphusElemDark",
78
+ "light": "sisyphusElemLight"
79
+ },
80
+ "border": {
81
+ "dark": "sisyphusBorderDark",
82
+ "light": "sisyphusBorderLight"
83
+ },
84
+ "borderActive": {
85
+ "dark": "sisyphusAccentDark",
86
+ "light": "sisyphusAccentLight"
87
+ },
88
+ "borderSubtle": {
89
+ "dark": "sisyphusBorderSubtleDark",
90
+ "light": "sisyphusBorderSubtleLight"
91
+ },
92
+ "diffAdded": {
93
+ "dark": "sisyphusOkDark",
94
+ "light": "sisyphusOkLight"
95
+ },
96
+ "diffRemoved": {
97
+ "dark": "sisyphusErrorDark",
98
+ "light": "sisyphusErrorLight"
99
+ },
100
+ "diffContext": {
101
+ "dark": "sisyphusMutedDark",
102
+ "light": "sisyphusMutedLight"
103
+ },
104
+ "diffHunkHeader": {
105
+ "dark": "sisyphusMutedDark",
106
+ "light": "sisyphusMutedLight"
107
+ },
108
+ "diffHighlightAdded": {
109
+ "dark": "sisyphusOkDark",
110
+ "light": "sisyphusOkLight"
111
+ },
112
+ "diffHighlightRemoved": {
113
+ "dark": "sisyphusErrorDark",
114
+ "light": "sisyphusErrorLight"
115
+ },
116
+ "diffAddedBg": {
117
+ "dark": "#343434",
118
+ "light": "#E9E9E9"
119
+ },
120
+ "diffRemovedBg": {
121
+ "dark": "#444444",
122
+ "light": "#ECECEC"
123
+ },
124
+ "diffContextBg": {
125
+ "dark": "sisyphusPanelDark",
126
+ "light": "sisyphusPanelLight"
127
+ },
128
+ "diffLineNumber": {
129
+ "dark": "sisyphusMutedDark",
130
+ "light": "sisyphusMutedLight"
131
+ },
132
+ "diffAddedLineNumberBg": {
133
+ "dark": "#2B2B2B",
134
+ "light": "#F0F0F0"
135
+ },
136
+ "diffRemovedLineNumberBg": {
137
+ "dark": "#343434",
138
+ "light": "#F2F2F2"
139
+ },
140
+ "markdownText": {
141
+ "dark": "sisyphusTextDark",
142
+ "light": "sisyphusTextLight"
143
+ },
144
+ "markdownHeading": {
145
+ "dark": "sisyphusPrimaryDark",
146
+ "light": "sisyphusPrimaryLight"
147
+ },
148
+ "markdownLink": {
149
+ "dark": "sisyphusAccentDark",
150
+ "light": "sisyphusAccentLight"
151
+ },
152
+ "markdownLinkText": {
153
+ "dark": "sisyphusSecondaryDark",
154
+ "light": "sisyphusSecondaryLight"
155
+ },
156
+ "markdownCode": {
157
+ "dark": "sisyphusSecondaryDark",
158
+ "light": "sisyphusSecondaryLight"
159
+ },
160
+ "markdownBlockQuote": {
161
+ "dark": "sisyphusMutedDark",
162
+ "light": "sisyphusMutedLight"
163
+ },
164
+ "markdownEmph": {
165
+ "dark": "sisyphusAccentDark",
166
+ "light": "sisyphusAccentLight"
167
+ },
168
+ "markdownStrong": {
169
+ "dark": "sisyphusPrimaryDark",
170
+ "light": "sisyphusPrimaryLight"
171
+ },
172
+ "markdownHorizontalRule": {
173
+ "dark": "sisyphusBorderDark",
174
+ "light": "sisyphusBorderLight"
175
+ },
176
+ "markdownListItem": {
177
+ "dark": "sisyphusTextDark",
178
+ "light": "sisyphusTextLight"
179
+ },
180
+ "markdownListEnumeration": {
181
+ "dark": "sisyphusAccentDark",
182
+ "light": "sisyphusAccentLight"
183
+ },
184
+ "markdownImage": {
185
+ "dark": "sisyphusAccentDark",
186
+ "light": "sisyphusAccentLight"
187
+ },
188
+ "markdownImageText": {
189
+ "dark": "sisyphusMutedDark",
190
+ "light": "sisyphusMutedLight"
191
+ },
192
+ "markdownCodeBlock": {
193
+ "dark": "sisyphusTextDark",
194
+ "light": "sisyphusTextLight"
195
+ },
196
+ "syntaxComment": {
197
+ "dark": "sisyphusMutedDark",
198
+ "light": "sisyphusMutedLight"
199
+ },
200
+ "syntaxKeyword": {
201
+ "dark": "sisyphusAccentDark",
202
+ "light": "sisyphusAccentLight"
203
+ },
204
+ "syntaxFunction": {
205
+ "dark": "sisyphusPrimaryDark",
206
+ "light": "sisyphusPrimaryLight"
207
+ },
208
+ "syntaxVariable": {
209
+ "dark": "sisyphusTextDark",
210
+ "light": "sisyphusTextLight"
211
+ },
212
+ "syntaxString": {
213
+ "dark": "sisyphusOkDark",
214
+ "light": "sisyphusOkLight"
215
+ },
216
+ "syntaxNumber": {
217
+ "dark": "sisyphusAccentDark",
218
+ "light": "sisyphusAccentLight"
219
+ },
220
+ "syntaxType": {
221
+ "dark": "sisyphusSecondaryDark",
222
+ "light": "sisyphusSecondaryLight"
223
+ },
224
+ "syntaxOperator": {
225
+ "dark": "sisyphusSecondaryDark",
226
+ "light": "sisyphusSecondaryLight"
227
+ },
228
+ "syntaxPunctuation": {
229
+ "dark": "sisyphusTextDark",
230
+ "light": "sisyphusTextLight"
231
+ }
232
+ }
233
+ }