@yeshwanthyk/open-tui 0.1.0 → 0.1.2

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 (132) hide show
  1. package/dist/app.d.ts +18 -0
  2. package/dist/app.d.ts.map +1 -0
  3. package/dist/app.js +28 -0
  4. package/dist/app.js.map +1 -0
  5. package/dist/autocomplete/autocomplete.d.ts +48 -0
  6. package/dist/autocomplete/autocomplete.d.ts.map +1 -0
  7. package/dist/autocomplete/autocomplete.js +391 -0
  8. package/dist/autocomplete/autocomplete.js.map +1 -0
  9. package/dist/autocomplete/file-index.d.ts +36 -0
  10. package/dist/autocomplete/file-index.d.ts.map +1 -0
  11. package/dist/autocomplete/file-index.js +143 -0
  12. package/dist/autocomplete/file-index.js.map +1 -0
  13. package/dist/autocomplete/index.d.ts +3 -0
  14. package/dist/autocomplete/index.d.ts.map +1 -0
  15. package/dist/autocomplete/index.js +3 -0
  16. package/dist/autocomplete/index.js.map +1 -0
  17. package/dist/components/badge.d.ts +11 -0
  18. package/dist/components/badge.d.ts.map +1 -0
  19. package/dist/components/badge.js +28 -0
  20. package/dist/components/badge.js.map +1 -0
  21. package/dist/components/code-block.d.ts +12 -0
  22. package/dist/components/code-block.d.ts.map +1 -0
  23. package/dist/components/code-block.js +21 -0
  24. package/dist/components/code-block.js.map +1 -0
  25. package/dist/components/dialog.d.ts +12 -0
  26. package/dist/components/dialog.d.ts.map +1 -0
  27. package/dist/components/dialog.js +15 -0
  28. package/dist/components/dialog.js.map +1 -0
  29. package/dist/components/diff.d.ts +11 -0
  30. package/dist/components/diff.d.ts.map +1 -0
  31. package/dist/components/diff.js +18 -0
  32. package/dist/components/diff.js.map +1 -0
  33. package/dist/components/divider.d.ts +9 -0
  34. package/dist/components/divider.d.ts.map +1 -0
  35. package/dist/components/divider.js +14 -0
  36. package/dist/components/divider.js.map +1 -0
  37. package/dist/components/editor.d.ts +87 -0
  38. package/dist/components/editor.d.ts.map +1 -0
  39. package/dist/components/editor.js +145 -0
  40. package/dist/components/editor.js.map +1 -0
  41. package/dist/components/image.d.ts +65 -0
  42. package/dist/components/image.d.ts.map +1 -0
  43. package/dist/components/image.js +315 -0
  44. package/dist/components/image.js.map +1 -0
  45. package/dist/components/loader.d.ts +25 -0
  46. package/dist/components/loader.d.ts.map +1 -0
  47. package/dist/components/loader.js +24 -0
  48. package/dist/components/loader.js.map +1 -0
  49. package/dist/components/markdown.d.ts +28 -0
  50. package/dist/components/markdown.d.ts.map +1 -0
  51. package/dist/components/markdown.js +28 -0
  52. package/dist/components/markdown.js.map +1 -0
  53. package/dist/components/panel.d.ts +12 -0
  54. package/dist/components/panel.d.ts.map +1 -0
  55. package/dist/components/panel.js +47 -0
  56. package/dist/components/panel.js.map +1 -0
  57. package/dist/components/select-list.d.ts +55 -0
  58. package/dist/components/select-list.d.ts.map +1 -0
  59. package/dist/components/select-list.js +116 -0
  60. package/dist/components/select-list.js.map +1 -0
  61. package/dist/components/spacer.d.ts +25 -0
  62. package/dist/components/spacer.d.ts.map +1 -0
  63. package/dist/components/spacer.js +25 -0
  64. package/dist/components/spacer.js.map +1 -0
  65. package/dist/components/toast.d.ts +19 -0
  66. package/dist/components/toast.d.ts.map +1 -0
  67. package/dist/components/toast.js +42 -0
  68. package/dist/components/toast.js.map +1 -0
  69. package/dist/context/terminal.d.ts +7 -0
  70. package/dist/context/terminal.d.ts.map +1 -0
  71. package/dist/context/terminal.js +6 -0
  72. package/dist/context/terminal.js.map +1 -0
  73. package/dist/context/theme.d.ts +117 -0
  74. package/dist/context/theme.d.ts.map +1 -0
  75. package/dist/context/theme.js +648 -0
  76. package/dist/context/theme.js.map +1 -0
  77. package/dist/hooks/use-keyboard.d.ts +7 -0
  78. package/dist/hooks/use-keyboard.d.ts.map +1 -0
  79. package/dist/hooks/use-keyboard.js +6 -0
  80. package/dist/hooks/use-keyboard.js.map +1 -0
  81. package/dist/index.d.ts +31 -0
  82. package/dist/index.d.ts.map +1 -0
  83. package/dist/index.js +45 -0
  84. package/dist/index.js.map +1 -0
  85. package/dist/opentui-augmentations.d.ts +9 -0
  86. package/dist/opentui-augmentations.d.ts.map +1 -0
  87. package/dist/opentui-augmentations.js +1 -0
  88. package/dist/opentui-augmentations.js.map +1 -0
  89. package/dist/parsers-config.d.ts +16 -0
  90. package/dist/parsers-config.d.ts.map +1 -0
  91. package/dist/parsers-config.js +119 -0
  92. package/dist/parsers-config.js.map +1 -0
  93. package/dist/themes/aura.json +69 -0
  94. package/dist/themes/ayu.json +80 -0
  95. package/dist/themes/catppuccin-macchiato.json +233 -0
  96. package/dist/themes/catppuccin.json +112 -0
  97. package/dist/themes/cobalt2.json +228 -0
  98. package/dist/themes/dracula.json +219 -0
  99. package/dist/themes/everforest.json +241 -0
  100. package/dist/themes/flexoki.json +237 -0
  101. package/dist/themes/github.json +233 -0
  102. package/dist/themes/gruvbox.json +95 -0
  103. package/dist/themes/kanagawa.json +77 -0
  104. package/dist/themes/lucent-orng.json +227 -0
  105. package/dist/themes/marvin.json +97 -0
  106. package/dist/themes/material.json +235 -0
  107. package/dist/themes/matrix.json +77 -0
  108. package/dist/themes/mercury.json +245 -0
  109. package/dist/themes/monokai.json +221 -0
  110. package/dist/themes/nightowl.json +221 -0
  111. package/dist/themes/nord.json +223 -0
  112. package/dist/themes/one-dark.json +84 -0
  113. package/dist/themes/opencode.json +245 -0
  114. package/dist/themes/orng.json +245 -0
  115. package/dist/themes/palenight.json +222 -0
  116. package/dist/themes/rosepine.json +234 -0
  117. package/dist/themes/solarized.json +223 -0
  118. package/dist/themes/synthwave84.json +226 -0
  119. package/dist/themes/tokyonight.json +243 -0
  120. package/dist/themes/vercel.json +245 -0
  121. package/dist/themes/vesper.json +218 -0
  122. package/dist/themes/zenburn.json +223 -0
  123. package/dist/utils/clipboard.d.ts +12 -0
  124. package/dist/utils/clipboard.d.ts.map +1 -0
  125. package/dist/utils/clipboard.js +52 -0
  126. package/dist/utils/clipboard.js.map +1 -0
  127. package/dist/utils/text-width.d.ts +26 -0
  128. package/dist/utils/text-width.d.ts.map +1 -0
  129. package/dist/utils/text-width.js +101 -0
  130. package/dist/utils/text-width.js.map +1 -0
  131. package/package.json +13 -4
  132. package/src/index.ts +0 -121
@@ -0,0 +1,222 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "background": "#292d3e",
5
+ "backgroundAlt": "#1e2132",
6
+ "backgroundPanel": "#32364a",
7
+ "foreground": "#a6accd",
8
+ "foregroundBright": "#bfc7d5",
9
+ "comment": "#676e95",
10
+ "red": "#f07178",
11
+ "orange": "#f78c6c",
12
+ "yellow": "#ffcb6b",
13
+ "green": "#c3e88d",
14
+ "cyan": "#89ddff",
15
+ "blue": "#82aaff",
16
+ "purple": "#c792ea",
17
+ "magenta": "#ff5370",
18
+ "pink": "#f07178"
19
+ },
20
+ "theme": {
21
+ "primary": {
22
+ "dark": "blue",
23
+ "light": "#4976eb"
24
+ },
25
+ "secondary": {
26
+ "dark": "purple",
27
+ "light": "#a854f2"
28
+ },
29
+ "accent": {
30
+ "dark": "cyan",
31
+ "light": "#00acc1"
32
+ },
33
+ "error": {
34
+ "dark": "red",
35
+ "light": "#e53935"
36
+ },
37
+ "warning": {
38
+ "dark": "yellow",
39
+ "light": "#ffb300"
40
+ },
41
+ "success": {
42
+ "dark": "green",
43
+ "light": "#91b859"
44
+ },
45
+ "info": {
46
+ "dark": "orange",
47
+ "light": "#f4511e"
48
+ },
49
+ "text": {
50
+ "dark": "foreground",
51
+ "light": "#292d3e"
52
+ },
53
+ "textMuted": {
54
+ "dark": "comment",
55
+ "light": "#8796b0"
56
+ },
57
+ "background": {
58
+ "dark": "#292d3e",
59
+ "light": "#fafafa"
60
+ },
61
+ "backgroundPanel": {
62
+ "dark": "#1e2132",
63
+ "light": "#f5f5f5"
64
+ },
65
+ "backgroundElement": {
66
+ "dark": "#32364a",
67
+ "light": "#e7e7e8"
68
+ },
69
+ "border": {
70
+ "dark": "#32364a",
71
+ "light": "#e0e0e0"
72
+ },
73
+ "borderActive": {
74
+ "dark": "blue",
75
+ "light": "#4976eb"
76
+ },
77
+ "borderSubtle": {
78
+ "dark": "#1e2132",
79
+ "light": "#eeeeee"
80
+ },
81
+ "diffAdded": {
82
+ "dark": "green",
83
+ "light": "#91b859"
84
+ },
85
+ "diffRemoved": {
86
+ "dark": "red",
87
+ "light": "#e53935"
88
+ },
89
+ "diffContext": {
90
+ "dark": "comment",
91
+ "light": "#8796b0"
92
+ },
93
+ "diffHunkHeader": {
94
+ "dark": "cyan",
95
+ "light": "#00acc1"
96
+ },
97
+ "diffHighlightAdded": {
98
+ "dark": "green",
99
+ "light": "#91b859"
100
+ },
101
+ "diffHighlightRemoved": {
102
+ "dark": "red",
103
+ "light": "#e53935"
104
+ },
105
+ "diffAddedBg": {
106
+ "dark": "#2e3c2b",
107
+ "light": "#e8f5e9"
108
+ },
109
+ "diffRemovedBg": {
110
+ "dark": "#3c2b2b",
111
+ "light": "#ffebee"
112
+ },
113
+ "diffContextBg": {
114
+ "dark": "#1e2132",
115
+ "light": "#f5f5f5"
116
+ },
117
+ "diffLineNumber": {
118
+ "dark": "#444760",
119
+ "light": "#cfd8dc"
120
+ },
121
+ "diffAddedLineNumberBg": {
122
+ "dark": "#2e3c2b",
123
+ "light": "#e8f5e9"
124
+ },
125
+ "diffRemovedLineNumberBg": {
126
+ "dark": "#3c2b2b",
127
+ "light": "#ffebee"
128
+ },
129
+ "markdownText": {
130
+ "dark": "foreground",
131
+ "light": "#292d3e"
132
+ },
133
+ "markdownHeading": {
134
+ "dark": "purple",
135
+ "light": "#a854f2"
136
+ },
137
+ "markdownLink": {
138
+ "dark": "blue",
139
+ "light": "#4976eb"
140
+ },
141
+ "markdownLinkText": {
142
+ "dark": "cyan",
143
+ "light": "#00acc1"
144
+ },
145
+ "markdownCode": {
146
+ "dark": "green",
147
+ "light": "#91b859"
148
+ },
149
+ "markdownBlockQuote": {
150
+ "dark": "comment",
151
+ "light": "#8796b0"
152
+ },
153
+ "markdownEmph": {
154
+ "dark": "yellow",
155
+ "light": "#ffb300"
156
+ },
157
+ "markdownStrong": {
158
+ "dark": "orange",
159
+ "light": "#f4511e"
160
+ },
161
+ "markdownHorizontalRule": {
162
+ "dark": "comment",
163
+ "light": "#8796b0"
164
+ },
165
+ "markdownListItem": {
166
+ "dark": "blue",
167
+ "light": "#4976eb"
168
+ },
169
+ "markdownListEnumeration": {
170
+ "dark": "cyan",
171
+ "light": "#00acc1"
172
+ },
173
+ "markdownImage": {
174
+ "dark": "blue",
175
+ "light": "#4976eb"
176
+ },
177
+ "markdownImageText": {
178
+ "dark": "cyan",
179
+ "light": "#00acc1"
180
+ },
181
+ "markdownCodeBlock": {
182
+ "dark": "foreground",
183
+ "light": "#292d3e"
184
+ },
185
+ "syntaxComment": {
186
+ "dark": "comment",
187
+ "light": "#8796b0"
188
+ },
189
+ "syntaxKeyword": {
190
+ "dark": "purple",
191
+ "light": "#a854f2"
192
+ },
193
+ "syntaxFunction": {
194
+ "dark": "blue",
195
+ "light": "#4976eb"
196
+ },
197
+ "syntaxVariable": {
198
+ "dark": "foreground",
199
+ "light": "#292d3e"
200
+ },
201
+ "syntaxString": {
202
+ "dark": "green",
203
+ "light": "#91b859"
204
+ },
205
+ "syntaxNumber": {
206
+ "dark": "orange",
207
+ "light": "#f4511e"
208
+ },
209
+ "syntaxType": {
210
+ "dark": "yellow",
211
+ "light": "#ffb300"
212
+ },
213
+ "syntaxOperator": {
214
+ "dark": "cyan",
215
+ "light": "#00acc1"
216
+ },
217
+ "syntaxPunctuation": {
218
+ "dark": "foreground",
219
+ "light": "#292d3e"
220
+ }
221
+ }
222
+ }
@@ -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,223 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "base03": "#002b36",
5
+ "base02": "#073642",
6
+ "base01": "#586e75",
7
+ "base00": "#657b83",
8
+ "base0": "#839496",
9
+ "base1": "#93a1a1",
10
+ "base2": "#eee8d5",
11
+ "base3": "#fdf6e3",
12
+ "yellow": "#b58900",
13
+ "orange": "#cb4b16",
14
+ "red": "#dc322f",
15
+ "magenta": "#d33682",
16
+ "violet": "#6c71c4",
17
+ "blue": "#268bd2",
18
+ "cyan": "#2aa198",
19
+ "green": "#859900"
20
+ },
21
+ "theme": {
22
+ "primary": {
23
+ "dark": "blue",
24
+ "light": "blue"
25
+ },
26
+ "secondary": {
27
+ "dark": "violet",
28
+ "light": "violet"
29
+ },
30
+ "accent": {
31
+ "dark": "cyan",
32
+ "light": "cyan"
33
+ },
34
+ "error": {
35
+ "dark": "red",
36
+ "light": "red"
37
+ },
38
+ "warning": {
39
+ "dark": "yellow",
40
+ "light": "yellow"
41
+ },
42
+ "success": {
43
+ "dark": "green",
44
+ "light": "green"
45
+ },
46
+ "info": {
47
+ "dark": "orange",
48
+ "light": "orange"
49
+ },
50
+ "text": {
51
+ "dark": "base0",
52
+ "light": "base00"
53
+ },
54
+ "textMuted": {
55
+ "dark": "base01",
56
+ "light": "base1"
57
+ },
58
+ "background": {
59
+ "dark": "base03",
60
+ "light": "base3"
61
+ },
62
+ "backgroundPanel": {
63
+ "dark": "base02",
64
+ "light": "base2"
65
+ },
66
+ "backgroundElement": {
67
+ "dark": "#073642",
68
+ "light": "#eee8d5"
69
+ },
70
+ "border": {
71
+ "dark": "base02",
72
+ "light": "base2"
73
+ },
74
+ "borderActive": {
75
+ "dark": "base01",
76
+ "light": "base1"
77
+ },
78
+ "borderSubtle": {
79
+ "dark": "#073642",
80
+ "light": "#eee8d5"
81
+ },
82
+ "diffAdded": {
83
+ "dark": "green",
84
+ "light": "green"
85
+ },
86
+ "diffRemoved": {
87
+ "dark": "red",
88
+ "light": "red"
89
+ },
90
+ "diffContext": {
91
+ "dark": "base01",
92
+ "light": "base1"
93
+ },
94
+ "diffHunkHeader": {
95
+ "dark": "base01",
96
+ "light": "base1"
97
+ },
98
+ "diffHighlightAdded": {
99
+ "dark": "green",
100
+ "light": "green"
101
+ },
102
+ "diffHighlightRemoved": {
103
+ "dark": "red",
104
+ "light": "red"
105
+ },
106
+ "diffAddedBg": {
107
+ "dark": "#073642",
108
+ "light": "#eee8d5"
109
+ },
110
+ "diffRemovedBg": {
111
+ "dark": "#073642",
112
+ "light": "#eee8d5"
113
+ },
114
+ "diffContextBg": {
115
+ "dark": "base02",
116
+ "light": "base2"
117
+ },
118
+ "diffLineNumber": {
119
+ "dark": "base01",
120
+ "light": "base1"
121
+ },
122
+ "diffAddedLineNumberBg": {
123
+ "dark": "#073642",
124
+ "light": "#eee8d5"
125
+ },
126
+ "diffRemovedLineNumberBg": {
127
+ "dark": "#073642",
128
+ "light": "#eee8d5"
129
+ },
130
+ "markdownText": {
131
+ "dark": "base0",
132
+ "light": "base00"
133
+ },
134
+ "markdownHeading": {
135
+ "dark": "blue",
136
+ "light": "blue"
137
+ },
138
+ "markdownLink": {
139
+ "dark": "cyan",
140
+ "light": "cyan"
141
+ },
142
+ "markdownLinkText": {
143
+ "dark": "violet",
144
+ "light": "violet"
145
+ },
146
+ "markdownCode": {
147
+ "dark": "green",
148
+ "light": "green"
149
+ },
150
+ "markdownBlockQuote": {
151
+ "dark": "base01",
152
+ "light": "base1"
153
+ },
154
+ "markdownEmph": {
155
+ "dark": "yellow",
156
+ "light": "yellow"
157
+ },
158
+ "markdownStrong": {
159
+ "dark": "orange",
160
+ "light": "orange"
161
+ },
162
+ "markdownHorizontalRule": {
163
+ "dark": "base01",
164
+ "light": "base1"
165
+ },
166
+ "markdownListItem": {
167
+ "dark": "blue",
168
+ "light": "blue"
169
+ },
170
+ "markdownListEnumeration": {
171
+ "dark": "cyan",
172
+ "light": "cyan"
173
+ },
174
+ "markdownImage": {
175
+ "dark": "cyan",
176
+ "light": "cyan"
177
+ },
178
+ "markdownImageText": {
179
+ "dark": "violet",
180
+ "light": "violet"
181
+ },
182
+ "markdownCodeBlock": {
183
+ "dark": "base0",
184
+ "light": "base00"
185
+ },
186
+ "syntaxComment": {
187
+ "dark": "base01",
188
+ "light": "base1"
189
+ },
190
+ "syntaxKeyword": {
191
+ "dark": "green",
192
+ "light": "green"
193
+ },
194
+ "syntaxFunction": {
195
+ "dark": "blue",
196
+ "light": "blue"
197
+ },
198
+ "syntaxVariable": {
199
+ "dark": "cyan",
200
+ "light": "cyan"
201
+ },
202
+ "syntaxString": {
203
+ "dark": "cyan",
204
+ "light": "cyan"
205
+ },
206
+ "syntaxNumber": {
207
+ "dark": "magenta",
208
+ "light": "magenta"
209
+ },
210
+ "syntaxType": {
211
+ "dark": "yellow",
212
+ "light": "yellow"
213
+ },
214
+ "syntaxOperator": {
215
+ "dark": "green",
216
+ "light": "green"
217
+ },
218
+ "syntaxPunctuation": {
219
+ "dark": "base0",
220
+ "light": "base00"
221
+ }
222
+ }
223
+ }