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,242 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkBg0": "#282828",
5
+ "darkBg1": "#3c3836",
6
+ "darkBg2": "#504945",
7
+ "darkBg3": "#665c54",
8
+ "darkFg0": "#fbf1c7",
9
+ "darkFg1": "#ebdbb2",
10
+ "darkGray": "#928374",
11
+ "darkRed": "#cc241d",
12
+ "darkGreen": "#98971a",
13
+ "darkYellow": "#d79921",
14
+ "darkBlue": "#458588",
15
+ "darkPurple": "#b16286",
16
+ "darkAqua": "#689d6a",
17
+ "darkOrange": "#d65d0e",
18
+ "darkRedBright": "#fb4934",
19
+ "darkGreenBright": "#b8bb26",
20
+ "darkYellowBright": "#fabd2f",
21
+ "darkBlueBright": "#83a598",
22
+ "darkPurpleBright": "#d3869b",
23
+ "darkAquaBright": "#8ec07c",
24
+ "darkOrangeBright": "#fe8019",
25
+ "lightBg0": "#fbf1c7",
26
+ "lightBg1": "#ebdbb2",
27
+ "lightBg2": "#d5c4a1",
28
+ "lightBg3": "#bdae93",
29
+ "lightFg0": "#282828",
30
+ "lightFg1": "#3c3836",
31
+ "lightGray": "#7c6f64",
32
+ "lightRed": "#9d0006",
33
+ "lightGreen": "#79740e",
34
+ "lightYellow": "#b57614",
35
+ "lightBlue": "#076678",
36
+ "lightPurple": "#8f3f71",
37
+ "lightAqua": "#427b58",
38
+ "lightOrange": "#af3a03"
39
+ },
40
+ "theme": {
41
+ "primary": {
42
+ "dark": "darkBlueBright",
43
+ "light": "lightBlue"
44
+ },
45
+ "secondary": {
46
+ "dark": "darkPurpleBright",
47
+ "light": "lightPurple"
48
+ },
49
+ "accent": {
50
+ "dark": "darkAquaBright",
51
+ "light": "lightAqua"
52
+ },
53
+ "error": {
54
+ "dark": "darkRedBright",
55
+ "light": "lightRed"
56
+ },
57
+ "warning": {
58
+ "dark": "darkOrangeBright",
59
+ "light": "lightOrange"
60
+ },
61
+ "success": {
62
+ "dark": "darkGreenBright",
63
+ "light": "lightGreen"
64
+ },
65
+ "info": {
66
+ "dark": "darkYellowBright",
67
+ "light": "lightYellow"
68
+ },
69
+ "text": {
70
+ "dark": "darkFg1",
71
+ "light": "lightFg1"
72
+ },
73
+ "textMuted": {
74
+ "dark": "darkGray",
75
+ "light": "lightGray"
76
+ },
77
+ "background": {
78
+ "dark": "darkBg0",
79
+ "light": "lightBg0"
80
+ },
81
+ "backgroundPanel": {
82
+ "dark": "darkBg1",
83
+ "light": "lightBg1"
84
+ },
85
+ "backgroundElement": {
86
+ "dark": "darkBg2",
87
+ "light": "lightBg2"
88
+ },
89
+ "border": {
90
+ "dark": "darkBg3",
91
+ "light": "lightBg3"
92
+ },
93
+ "borderActive": {
94
+ "dark": "darkFg1",
95
+ "light": "lightFg1"
96
+ },
97
+ "borderSubtle": {
98
+ "dark": "darkBg2",
99
+ "light": "lightBg2"
100
+ },
101
+ "diffAdded": {
102
+ "dark": "darkGreen",
103
+ "light": "lightGreen"
104
+ },
105
+ "diffRemoved": {
106
+ "dark": "darkRed",
107
+ "light": "lightRed"
108
+ },
109
+ "diffContext": {
110
+ "dark": "darkGray",
111
+ "light": "lightGray"
112
+ },
113
+ "diffHunkHeader": {
114
+ "dark": "darkAqua",
115
+ "light": "lightAqua"
116
+ },
117
+ "diffHighlightAdded": {
118
+ "dark": "darkGreenBright",
119
+ "light": "lightGreen"
120
+ },
121
+ "diffHighlightRemoved": {
122
+ "dark": "darkRedBright",
123
+ "light": "lightRed"
124
+ },
125
+ "diffAddedBg": {
126
+ "dark": "#32302f",
127
+ "light": "#dcd8a4"
128
+ },
129
+ "diffRemovedBg": {
130
+ "dark": "#322929",
131
+ "light": "#e2c7c3"
132
+ },
133
+ "diffContextBg": {
134
+ "dark": "darkBg1",
135
+ "light": "lightBg1"
136
+ },
137
+ "diffLineNumber": {
138
+ "dark": "darkBg3",
139
+ "light": "lightBg3"
140
+ },
141
+ "diffAddedLineNumberBg": {
142
+ "dark": "#2a2827",
143
+ "light": "#cec99e"
144
+ },
145
+ "diffRemovedLineNumberBg": {
146
+ "dark": "#2a2222",
147
+ "light": "#d3bdb9"
148
+ },
149
+ "markdownText": {
150
+ "dark": "darkFg1",
151
+ "light": "lightFg1"
152
+ },
153
+ "markdownHeading": {
154
+ "dark": "darkBlueBright",
155
+ "light": "lightBlue"
156
+ },
157
+ "markdownLink": {
158
+ "dark": "darkAquaBright",
159
+ "light": "lightAqua"
160
+ },
161
+ "markdownLinkText": {
162
+ "dark": "darkGreenBright",
163
+ "light": "lightGreen"
164
+ },
165
+ "markdownCode": {
166
+ "dark": "darkYellowBright",
167
+ "light": "lightYellow"
168
+ },
169
+ "markdownBlockQuote": {
170
+ "dark": "darkGray",
171
+ "light": "lightGray"
172
+ },
173
+ "markdownEmph": {
174
+ "dark": "darkPurpleBright",
175
+ "light": "lightPurple"
176
+ },
177
+ "markdownStrong": {
178
+ "dark": "darkOrangeBright",
179
+ "light": "lightOrange"
180
+ },
181
+ "markdownHorizontalRule": {
182
+ "dark": "darkGray",
183
+ "light": "lightGray"
184
+ },
185
+ "markdownListItem": {
186
+ "dark": "darkBlueBright",
187
+ "light": "lightBlue"
188
+ },
189
+ "markdownListEnumeration": {
190
+ "dark": "darkAquaBright",
191
+ "light": "lightAqua"
192
+ },
193
+ "markdownImage": {
194
+ "dark": "darkAquaBright",
195
+ "light": "lightAqua"
196
+ },
197
+ "markdownImageText": {
198
+ "dark": "darkGreenBright",
199
+ "light": "lightGreen"
200
+ },
201
+ "markdownCodeBlock": {
202
+ "dark": "darkFg1",
203
+ "light": "lightFg1"
204
+ },
205
+ "syntaxComment": {
206
+ "dark": "darkGray",
207
+ "light": "lightGray"
208
+ },
209
+ "syntaxKeyword": {
210
+ "dark": "darkRedBright",
211
+ "light": "lightRed"
212
+ },
213
+ "syntaxFunction": {
214
+ "dark": "darkGreenBright",
215
+ "light": "lightGreen"
216
+ },
217
+ "syntaxVariable": {
218
+ "dark": "darkBlueBright",
219
+ "light": "lightBlue"
220
+ },
221
+ "syntaxString": {
222
+ "dark": "darkYellowBright",
223
+ "light": "lightYellow"
224
+ },
225
+ "syntaxNumber": {
226
+ "dark": "darkPurpleBright",
227
+ "light": "lightPurple"
228
+ },
229
+ "syntaxType": {
230
+ "dark": "darkAquaBright",
231
+ "light": "lightAqua"
232
+ },
233
+ "syntaxOperator": {
234
+ "dark": "darkOrangeBright",
235
+ "light": "lightOrange"
236
+ },
237
+ "syntaxPunctuation": {
238
+ "dark": "darkFg1",
239
+ "light": "lightFg1"
240
+ }
241
+ }
242
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "sumiInk0": "#1F1F28",
5
+ "sumiInk1": "#2A2A37",
6
+ "sumiInk2": "#363646",
7
+ "sumiInk3": "#54546D",
8
+ "fujiWhite": "#DCD7BA",
9
+ "oldWhite": "#C8C093",
10
+ "fujiGray": "#727169",
11
+ "oniViolet": "#957FB8",
12
+ "crystalBlue": "#7E9CD8",
13
+ "carpYellow": "#C38D9D",
14
+ "sakuraPink": "#D27E99",
15
+ "waveAqua": "#76946A",
16
+ "roninYellow": "#D7A657",
17
+ "dragonRed": "#E82424",
18
+ "lotusGreen": "#98BB6C",
19
+ "waveBlue": "#2D4F67",
20
+ "lightBg": "#F2E9DE",
21
+ "lightPaper": "#EAE4D7",
22
+ "lightText": "#54433A",
23
+ "lightGray": "#9E9389"
24
+ },
25
+ "theme": {
26
+ "primary": { "dark": "crystalBlue", "light": "waveBlue" },
27
+ "secondary": { "dark": "oniViolet", "light": "oniViolet" },
28
+ "accent": { "dark": "sakuraPink", "light": "sakuraPink" },
29
+ "error": { "dark": "dragonRed", "light": "dragonRed" },
30
+ "warning": { "dark": "roninYellow", "light": "roninYellow" },
31
+ "success": { "dark": "lotusGreen", "light": "lotusGreen" },
32
+ "info": { "dark": "waveAqua", "light": "waveAqua" },
33
+ "text": { "dark": "fujiWhite", "light": "lightText" },
34
+ "textMuted": { "dark": "fujiGray", "light": "lightGray" },
35
+ "background": { "dark": "sumiInk0", "light": "lightBg" },
36
+ "backgroundPanel": { "dark": "sumiInk1", "light": "lightPaper" },
37
+ "backgroundElement": { "dark": "sumiInk2", "light": "#E3DCD2" },
38
+ "border": { "dark": "sumiInk3", "light": "#D4CBBF" },
39
+ "borderActive": { "dark": "carpYellow", "light": "carpYellow" },
40
+ "borderSubtle": { "dark": "sumiInk2", "light": "#DCD4C9" },
41
+ "diffAdded": { "dark": "lotusGreen", "light": "lotusGreen" },
42
+ "diffRemoved": { "dark": "dragonRed", "light": "dragonRed" },
43
+ "diffContext": { "dark": "fujiGray", "light": "lightGray" },
44
+ "diffHunkHeader": { "dark": "waveBlue", "light": "waveBlue" },
45
+ "diffHighlightAdded": { "dark": "#A9D977", "light": "#89AF5B" },
46
+ "diffHighlightRemoved": { "dark": "#F24A4A", "light": "#D61F1F" },
47
+ "diffAddedBg": { "dark": "#252E25", "light": "#EAF3E4" },
48
+ "diffRemovedBg": { "dark": "#362020", "light": "#FBE6E6" },
49
+ "diffContextBg": { "dark": "sumiInk1", "light": "lightPaper" },
50
+ "diffLineNumber": { "dark": "sumiInk3", "light": "#C7BEB4" },
51
+ "diffAddedLineNumberBg": { "dark": "#202820", "light": "#DDE8D6" },
52
+ "diffRemovedLineNumberBg": { "dark": "#2D1C1C", "light": "#F2DADA" },
53
+ "markdownText": { "dark": "fujiWhite", "light": "lightText" },
54
+ "markdownHeading": { "dark": "oniViolet", "light": "oniViolet" },
55
+ "markdownLink": { "dark": "crystalBlue", "light": "waveBlue" },
56
+ "markdownLinkText": { "dark": "waveAqua", "light": "waveAqua" },
57
+ "markdownCode": { "dark": "lotusGreen", "light": "lotusGreen" },
58
+ "markdownBlockQuote": { "dark": "fujiGray", "light": "lightGray" },
59
+ "markdownEmph": { "dark": "carpYellow", "light": "carpYellow" },
60
+ "markdownStrong": { "dark": "roninYellow", "light": "roninYellow" },
61
+ "markdownHorizontalRule": { "dark": "fujiGray", "light": "lightGray" },
62
+ "markdownListItem": { "dark": "crystalBlue", "light": "waveBlue" },
63
+ "markdownListEnumeration": { "dark": "waveAqua", "light": "waveAqua" },
64
+ "markdownImage": { "dark": "crystalBlue", "light": "waveBlue" },
65
+ "markdownImageText": { "dark": "waveAqua", "light": "waveAqua" },
66
+ "markdownCodeBlock": { "dark": "fujiWhite", "light": "lightText" },
67
+ "syntaxComment": { "dark": "fujiGray", "light": "lightGray" },
68
+ "syntaxKeyword": { "dark": "oniViolet", "light": "oniViolet" },
69
+ "syntaxFunction": { "dark": "crystalBlue", "light": "waveBlue" },
70
+ "syntaxVariable": { "dark": "fujiWhite", "light": "lightText" },
71
+ "syntaxString": { "dark": "lotusGreen", "light": "lotusGreen" },
72
+ "syntaxNumber": { "dark": "roninYellow", "light": "roninYellow" },
73
+ "syntaxType": { "dark": "carpYellow", "light": "carpYellow" },
74
+ "syntaxOperator": { "dark": "sakuraPink", "light": "sakuraPink" },
75
+ "syntaxPunctuation": { "dark": "fujiWhite", "light": "lightText" }
76
+ }
77
+ }
@@ -0,0 +1,237 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "darkStep6": "#3c3c3c",
5
+ "darkStep11": "#808080",
6
+ "darkStep12": "#eeeeee",
7
+ "darkSecondary": "#EE7948",
8
+ "darkAccent": "#FFF7F1",
9
+ "darkRed": "#e06c75",
10
+ "darkOrange": "#EC5B2B",
11
+ "darkBlue": "#6ba1e6",
12
+ "darkCyan": "#56b6c2",
13
+ "darkYellow": "#e5c07b",
14
+ "darkPanelBg": "#2a1a1599",
15
+ "lightStep6": "#d4d4d4",
16
+ "lightStep11": "#8a8a8a",
17
+ "lightStep12": "#1a1a1a",
18
+ "lightSecondary": "#EE7948",
19
+ "lightAccent": "#c94d24",
20
+ "lightRed": "#d1383d",
21
+ "lightOrange": "#EC5B2B",
22
+ "lightBlue": "#0062d1",
23
+ "lightCyan": "#318795",
24
+ "lightYellow": "#b0851f",
25
+ "lightPanelBg": "#fff5f099"
26
+ },
27
+ "theme": {
28
+ "primary": {
29
+ "dark": "darkOrange",
30
+ "light": "lightOrange"
31
+ },
32
+ "secondary": {
33
+ "dark": "darkSecondary",
34
+ "light": "lightSecondary"
35
+ },
36
+ "accent": {
37
+ "dark": "darkAccent",
38
+ "light": "lightAccent"
39
+ },
40
+ "error": {
41
+ "dark": "darkRed",
42
+ "light": "lightRed"
43
+ },
44
+ "warning": {
45
+ "dark": "darkOrange",
46
+ "light": "lightOrange"
47
+ },
48
+ "success": {
49
+ "dark": "darkBlue",
50
+ "light": "lightBlue"
51
+ },
52
+ "info": {
53
+ "dark": "darkCyan",
54
+ "light": "lightCyan"
55
+ },
56
+ "text": {
57
+ "dark": "darkStep12",
58
+ "light": "lightStep12"
59
+ },
60
+ "textMuted": {
61
+ "dark": "darkStep11",
62
+ "light": "lightStep11"
63
+ },
64
+ "selectedListItemText": {
65
+ "dark": "#0a0a0a",
66
+ "light": "#ffffff"
67
+ },
68
+ "background": {
69
+ "dark": "transparent",
70
+ "light": "transparent"
71
+ },
72
+ "backgroundPanel": {
73
+ "dark": "transparent",
74
+ "light": "transparent"
75
+ },
76
+ "backgroundElement": {
77
+ "dark": "transparent",
78
+ "light": "transparent"
79
+ },
80
+ "backgroundMenu": {
81
+ "dark": "darkPanelBg",
82
+ "light": "lightPanelBg"
83
+ },
84
+ "border": {
85
+ "dark": "darkOrange",
86
+ "light": "lightOrange"
87
+ },
88
+ "borderActive": {
89
+ "dark": "darkSecondary",
90
+ "light": "lightAccent"
91
+ },
92
+ "borderSubtle": {
93
+ "dark": "darkStep6",
94
+ "light": "lightStep6"
95
+ },
96
+ "diffAdded": {
97
+ "dark": "darkBlue",
98
+ "light": "lightBlue"
99
+ },
100
+ "diffRemoved": {
101
+ "dark": "#c53b53",
102
+ "light": "#c53b53"
103
+ },
104
+ "diffContext": {
105
+ "dark": "#828bb8",
106
+ "light": "#7086b5"
107
+ },
108
+ "diffHunkHeader": {
109
+ "dark": "#828bb8",
110
+ "light": "#7086b5"
111
+ },
112
+ "diffHighlightAdded": {
113
+ "dark": "darkBlue",
114
+ "light": "lightBlue"
115
+ },
116
+ "diffHighlightRemoved": {
117
+ "dark": "#e26a75",
118
+ "light": "#f52a65"
119
+ },
120
+ "diffAddedBg": {
121
+ "dark": "transparent",
122
+ "light": "transparent"
123
+ },
124
+ "diffRemovedBg": {
125
+ "dark": "transparent",
126
+ "light": "transparent"
127
+ },
128
+ "diffContextBg": {
129
+ "dark": "transparent",
130
+ "light": "transparent"
131
+ },
132
+ "diffLineNumber": {
133
+ "dark": "#666666",
134
+ "light": "#999999"
135
+ },
136
+ "diffAddedLineNumberBg": {
137
+ "dark": "transparent",
138
+ "light": "transparent"
139
+ },
140
+ "diffRemovedLineNumberBg": {
141
+ "dark": "transparent",
142
+ "light": "transparent"
143
+ },
144
+ "markdownText": {
145
+ "dark": "darkStep12",
146
+ "light": "lightStep12"
147
+ },
148
+ "markdownHeading": {
149
+ "dark": "darkOrange",
150
+ "light": "lightOrange"
151
+ },
152
+ "markdownLink": {
153
+ "dark": "darkOrange",
154
+ "light": "lightOrange"
155
+ },
156
+ "markdownLinkText": {
157
+ "dark": "darkCyan",
158
+ "light": "lightCyan"
159
+ },
160
+ "markdownCode": {
161
+ "dark": "darkBlue",
162
+ "light": "lightBlue"
163
+ },
164
+ "markdownBlockQuote": {
165
+ "dark": "darkAccent",
166
+ "light": "lightYellow"
167
+ },
168
+ "markdownEmph": {
169
+ "dark": "darkYellow",
170
+ "light": "lightYellow"
171
+ },
172
+ "markdownStrong": {
173
+ "dark": "darkSecondary",
174
+ "light": "lightOrange"
175
+ },
176
+ "markdownHorizontalRule": {
177
+ "dark": "darkStep11",
178
+ "light": "lightStep11"
179
+ },
180
+ "markdownListItem": {
181
+ "dark": "darkOrange",
182
+ "light": "lightOrange"
183
+ },
184
+ "markdownListEnumeration": {
185
+ "dark": "darkCyan",
186
+ "light": "lightCyan"
187
+ },
188
+ "markdownImage": {
189
+ "dark": "darkOrange",
190
+ "light": "lightOrange"
191
+ },
192
+ "markdownImageText": {
193
+ "dark": "darkCyan",
194
+ "light": "lightCyan"
195
+ },
196
+ "markdownCodeBlock": {
197
+ "dark": "darkStep12",
198
+ "light": "lightStep12"
199
+ },
200
+ "syntaxComment": {
201
+ "dark": "darkStep11",
202
+ "light": "lightStep11"
203
+ },
204
+ "syntaxKeyword": {
205
+ "dark": "darkOrange",
206
+ "light": "lightOrange"
207
+ },
208
+ "syntaxFunction": {
209
+ "dark": "darkSecondary",
210
+ "light": "lightAccent"
211
+ },
212
+ "syntaxVariable": {
213
+ "dark": "darkRed",
214
+ "light": "lightRed"
215
+ },
216
+ "syntaxString": {
217
+ "dark": "darkBlue",
218
+ "light": "lightBlue"
219
+ },
220
+ "syntaxNumber": {
221
+ "dark": "darkAccent",
222
+ "light": "lightOrange"
223
+ },
224
+ "syntaxType": {
225
+ "dark": "darkYellow",
226
+ "light": "lightYellow"
227
+ },
228
+ "syntaxOperator": {
229
+ "dark": "darkCyan",
230
+ "light": "lightCyan"
231
+ },
232
+ "syntaxPunctuation": {
233
+ "dark": "darkStep12",
234
+ "light": "lightStep12"
235
+ }
236
+ }
237
+ }