@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,221 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "background": "#272822",
5
+ "backgroundAlt": "#1e1f1c",
6
+ "backgroundPanel": "#3e3d32",
7
+ "foreground": "#f8f8f2",
8
+ "comment": "#75715e",
9
+ "red": "#f92672",
10
+ "orange": "#fd971f",
11
+ "lightOrange": "#e69f66",
12
+ "yellow": "#e6db74",
13
+ "green": "#a6e22e",
14
+ "cyan": "#66d9ef",
15
+ "blue": "#66d9ef",
16
+ "purple": "#ae81ff",
17
+ "pink": "#f92672"
18
+ },
19
+ "theme": {
20
+ "primary": {
21
+ "dark": "cyan",
22
+ "light": "blue"
23
+ },
24
+ "secondary": {
25
+ "dark": "purple",
26
+ "light": "purple"
27
+ },
28
+ "accent": {
29
+ "dark": "green",
30
+ "light": "green"
31
+ },
32
+ "error": {
33
+ "dark": "red",
34
+ "light": "red"
35
+ },
36
+ "warning": {
37
+ "dark": "yellow",
38
+ "light": "orange"
39
+ },
40
+ "success": {
41
+ "dark": "green",
42
+ "light": "green"
43
+ },
44
+ "info": {
45
+ "dark": "orange",
46
+ "light": "orange"
47
+ },
48
+ "text": {
49
+ "dark": "foreground",
50
+ "light": "#272822"
51
+ },
52
+ "textMuted": {
53
+ "dark": "comment",
54
+ "light": "#75715e"
55
+ },
56
+ "background": {
57
+ "dark": "#272822",
58
+ "light": "#fafafa"
59
+ },
60
+ "backgroundPanel": {
61
+ "dark": "#1e1f1c",
62
+ "light": "#f0f0f0"
63
+ },
64
+ "backgroundElement": {
65
+ "dark": "#3e3d32",
66
+ "light": "#e0e0e0"
67
+ },
68
+ "border": {
69
+ "dark": "#3e3d32",
70
+ "light": "#d0d0d0"
71
+ },
72
+ "borderActive": {
73
+ "dark": "cyan",
74
+ "light": "blue"
75
+ },
76
+ "borderSubtle": {
77
+ "dark": "#1e1f1c",
78
+ "light": "#e8e8e8"
79
+ },
80
+ "diffAdded": {
81
+ "dark": "green",
82
+ "light": "green"
83
+ },
84
+ "diffRemoved": {
85
+ "dark": "red",
86
+ "light": "red"
87
+ },
88
+ "diffContext": {
89
+ "dark": "comment",
90
+ "light": "#75715e"
91
+ },
92
+ "diffHunkHeader": {
93
+ "dark": "comment",
94
+ "light": "#75715e"
95
+ },
96
+ "diffHighlightAdded": {
97
+ "dark": "green",
98
+ "light": "green"
99
+ },
100
+ "diffHighlightRemoved": {
101
+ "dark": "red",
102
+ "light": "red"
103
+ },
104
+ "diffAddedBg": {
105
+ "dark": "#1a3a1a",
106
+ "light": "#e0ffe0"
107
+ },
108
+ "diffRemovedBg": {
109
+ "dark": "#3a1a1a",
110
+ "light": "#ffe0e0"
111
+ },
112
+ "diffContextBg": {
113
+ "dark": "#1e1f1c",
114
+ "light": "#f0f0f0"
115
+ },
116
+ "diffLineNumber": {
117
+ "dark": "#3e3d32",
118
+ "light": "#d0d0d0"
119
+ },
120
+ "diffAddedLineNumberBg": {
121
+ "dark": "#1a3a1a",
122
+ "light": "#e0ffe0"
123
+ },
124
+ "diffRemovedLineNumberBg": {
125
+ "dark": "#3a1a1a",
126
+ "light": "#ffe0e0"
127
+ },
128
+ "markdownText": {
129
+ "dark": "foreground",
130
+ "light": "#272822"
131
+ },
132
+ "markdownHeading": {
133
+ "dark": "pink",
134
+ "light": "pink"
135
+ },
136
+ "markdownLink": {
137
+ "dark": "cyan",
138
+ "light": "blue"
139
+ },
140
+ "markdownLinkText": {
141
+ "dark": "purple",
142
+ "light": "purple"
143
+ },
144
+ "markdownCode": {
145
+ "dark": "green",
146
+ "light": "green"
147
+ },
148
+ "markdownBlockQuote": {
149
+ "dark": "comment",
150
+ "light": "#75715e"
151
+ },
152
+ "markdownEmph": {
153
+ "dark": "yellow",
154
+ "light": "orange"
155
+ },
156
+ "markdownStrong": {
157
+ "dark": "orange",
158
+ "light": "orange"
159
+ },
160
+ "markdownHorizontalRule": {
161
+ "dark": "comment",
162
+ "light": "#75715e"
163
+ },
164
+ "markdownListItem": {
165
+ "dark": "cyan",
166
+ "light": "blue"
167
+ },
168
+ "markdownListEnumeration": {
169
+ "dark": "purple",
170
+ "light": "purple"
171
+ },
172
+ "markdownImage": {
173
+ "dark": "cyan",
174
+ "light": "blue"
175
+ },
176
+ "markdownImageText": {
177
+ "dark": "purple",
178
+ "light": "purple"
179
+ },
180
+ "markdownCodeBlock": {
181
+ "dark": "foreground",
182
+ "light": "#272822"
183
+ },
184
+ "syntaxComment": {
185
+ "dark": "comment",
186
+ "light": "#75715e"
187
+ },
188
+ "syntaxKeyword": {
189
+ "dark": "pink",
190
+ "light": "pink"
191
+ },
192
+ "syntaxFunction": {
193
+ "dark": "green",
194
+ "light": "green"
195
+ },
196
+ "syntaxVariable": {
197
+ "dark": "foreground",
198
+ "light": "#272822"
199
+ },
200
+ "syntaxString": {
201
+ "dark": "yellow",
202
+ "light": "orange"
203
+ },
204
+ "syntaxNumber": {
205
+ "dark": "purple",
206
+ "light": "purple"
207
+ },
208
+ "syntaxType": {
209
+ "dark": "cyan",
210
+ "light": "blue"
211
+ },
212
+ "syntaxOperator": {
213
+ "dark": "pink",
214
+ "light": "pink"
215
+ },
216
+ "syntaxPunctuation": {
217
+ "dark": "foreground",
218
+ "light": "#272822"
219
+ }
220
+ }
221
+ }
@@ -0,0 +1,221 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "nightOwlBg": "#011627",
5
+ "nightOwlFg": "#d6deeb",
6
+ "nightOwlBlue": "#82AAFF",
7
+ "nightOwlCyan": "#7fdbca",
8
+ "nightOwlGreen": "#c5e478",
9
+ "nightOwlYellow": "#ecc48d",
10
+ "nightOwlOrange": "#F78C6C",
11
+ "nightOwlRed": "#EF5350",
12
+ "nightOwlPink": "#ff5874",
13
+ "nightOwlPurple": "#c792ea",
14
+ "nightOwlMuted": "#5f7e97",
15
+ "nightOwlGray": "#637777",
16
+ "nightOwlLightGray": "#89a4bb",
17
+ "nightOwlPanel": "#0b253a"
18
+ },
19
+ "theme": {
20
+ "primary": {
21
+ "dark": "nightOwlBlue",
22
+ "light": "nightOwlBlue"
23
+ },
24
+ "secondary": {
25
+ "dark": "nightOwlCyan",
26
+ "light": "nightOwlCyan"
27
+ },
28
+ "accent": {
29
+ "dark": "nightOwlPurple",
30
+ "light": "nightOwlPurple"
31
+ },
32
+ "error": {
33
+ "dark": "nightOwlRed",
34
+ "light": "nightOwlRed"
35
+ },
36
+ "warning": {
37
+ "dark": "nightOwlYellow",
38
+ "light": "nightOwlYellow"
39
+ },
40
+ "success": {
41
+ "dark": "nightOwlGreen",
42
+ "light": "nightOwlGreen"
43
+ },
44
+ "info": {
45
+ "dark": "nightOwlBlue",
46
+ "light": "nightOwlBlue"
47
+ },
48
+ "text": {
49
+ "dark": "nightOwlFg",
50
+ "light": "nightOwlFg"
51
+ },
52
+ "textMuted": {
53
+ "dark": "nightOwlMuted",
54
+ "light": "nightOwlMuted"
55
+ },
56
+ "background": {
57
+ "dark": "nightOwlBg",
58
+ "light": "nightOwlBg"
59
+ },
60
+ "backgroundPanel": {
61
+ "dark": "nightOwlPanel",
62
+ "light": "nightOwlPanel"
63
+ },
64
+ "backgroundElement": {
65
+ "dark": "nightOwlPanel",
66
+ "light": "nightOwlPanel"
67
+ },
68
+ "border": {
69
+ "dark": "nightOwlMuted",
70
+ "light": "nightOwlMuted"
71
+ },
72
+ "borderActive": {
73
+ "dark": "nightOwlBlue",
74
+ "light": "nightOwlBlue"
75
+ },
76
+ "borderSubtle": {
77
+ "dark": "nightOwlMuted",
78
+ "light": "nightOwlMuted"
79
+ },
80
+ "diffAdded": {
81
+ "dark": "nightOwlGreen",
82
+ "light": "nightOwlGreen"
83
+ },
84
+ "diffRemoved": {
85
+ "dark": "nightOwlRed",
86
+ "light": "nightOwlRed"
87
+ },
88
+ "diffContext": {
89
+ "dark": "nightOwlMuted",
90
+ "light": "nightOwlMuted"
91
+ },
92
+ "diffHunkHeader": {
93
+ "dark": "nightOwlMuted",
94
+ "light": "nightOwlMuted"
95
+ },
96
+ "diffHighlightAdded": {
97
+ "dark": "nightOwlGreen",
98
+ "light": "nightOwlGreen"
99
+ },
100
+ "diffHighlightRemoved": {
101
+ "dark": "nightOwlRed",
102
+ "light": "nightOwlRed"
103
+ },
104
+ "diffAddedBg": {
105
+ "dark": "#0a2e1a",
106
+ "light": "#0a2e1a"
107
+ },
108
+ "diffRemovedBg": {
109
+ "dark": "#2d1b1b",
110
+ "light": "#2d1b1b"
111
+ },
112
+ "diffContextBg": {
113
+ "dark": "nightOwlPanel",
114
+ "light": "nightOwlPanel"
115
+ },
116
+ "diffLineNumber": {
117
+ "dark": "nightOwlMuted",
118
+ "light": "nightOwlMuted"
119
+ },
120
+ "diffAddedLineNumberBg": {
121
+ "dark": "#0a2e1a",
122
+ "light": "#0a2e1a"
123
+ },
124
+ "diffRemovedLineNumberBg": {
125
+ "dark": "#2d1b1b",
126
+ "light": "#2d1b1b"
127
+ },
128
+ "markdownText": {
129
+ "dark": "nightOwlFg",
130
+ "light": "nightOwlFg"
131
+ },
132
+ "markdownHeading": {
133
+ "dark": "nightOwlBlue",
134
+ "light": "nightOwlBlue"
135
+ },
136
+ "markdownLink": {
137
+ "dark": "nightOwlCyan",
138
+ "light": "nightOwlCyan"
139
+ },
140
+ "markdownLinkText": {
141
+ "dark": "nightOwlBlue",
142
+ "light": "nightOwlBlue"
143
+ },
144
+ "markdownCode": {
145
+ "dark": "nightOwlGreen",
146
+ "light": "nightOwlGreen"
147
+ },
148
+ "markdownBlockQuote": {
149
+ "dark": "nightOwlMuted",
150
+ "light": "nightOwlMuted"
151
+ },
152
+ "markdownEmph": {
153
+ "dark": "nightOwlPurple",
154
+ "light": "nightOwlPurple"
155
+ },
156
+ "markdownStrong": {
157
+ "dark": "nightOwlYellow",
158
+ "light": "nightOwlYellow"
159
+ },
160
+ "markdownHorizontalRule": {
161
+ "dark": "nightOwlMuted",
162
+ "light": "nightOwlMuted"
163
+ },
164
+ "markdownListItem": {
165
+ "dark": "nightOwlBlue",
166
+ "light": "nightOwlBlue"
167
+ },
168
+ "markdownListEnumeration": {
169
+ "dark": "nightOwlCyan",
170
+ "light": "nightOwlCyan"
171
+ },
172
+ "markdownImage": {
173
+ "dark": "nightOwlCyan",
174
+ "light": "nightOwlCyan"
175
+ },
176
+ "markdownImageText": {
177
+ "dark": "nightOwlBlue",
178
+ "light": "nightOwlBlue"
179
+ },
180
+ "markdownCodeBlock": {
181
+ "dark": "nightOwlFg",
182
+ "light": "nightOwlFg"
183
+ },
184
+ "syntaxComment": {
185
+ "dark": "nightOwlGray",
186
+ "light": "nightOwlGray"
187
+ },
188
+ "syntaxKeyword": {
189
+ "dark": "nightOwlPurple",
190
+ "light": "nightOwlPurple"
191
+ },
192
+ "syntaxFunction": {
193
+ "dark": "nightOwlBlue",
194
+ "light": "nightOwlBlue"
195
+ },
196
+ "syntaxVariable": {
197
+ "dark": "nightOwlFg",
198
+ "light": "nightOwlFg"
199
+ },
200
+ "syntaxString": {
201
+ "dark": "nightOwlYellow",
202
+ "light": "nightOwlYellow"
203
+ },
204
+ "syntaxNumber": {
205
+ "dark": "nightOwlOrange",
206
+ "light": "nightOwlOrange"
207
+ },
208
+ "syntaxType": {
209
+ "dark": "nightOwlGreen",
210
+ "light": "nightOwlGreen"
211
+ },
212
+ "syntaxOperator": {
213
+ "dark": "nightOwlCyan",
214
+ "light": "nightOwlCyan"
215
+ },
216
+ "syntaxPunctuation": {
217
+ "dark": "nightOwlFg",
218
+ "light": "nightOwlFg"
219
+ }
220
+ }
221
+ }
@@ -0,0 +1,223 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "defs": {
4
+ "nord0": "#2E3440",
5
+ "nord1": "#3B4252",
6
+ "nord2": "#434C5E",
7
+ "nord3": "#4C566A",
8
+ "nord4": "#D8DEE9",
9
+ "nord5": "#E5E9F0",
10
+ "nord6": "#ECEFF4",
11
+ "nord7": "#8FBCBB",
12
+ "nord8": "#88C0D0",
13
+ "nord9": "#81A1C1",
14
+ "nord10": "#5E81AC",
15
+ "nord11": "#BF616A",
16
+ "nord12": "#D08770",
17
+ "nord13": "#EBCB8B",
18
+ "nord14": "#A3BE8C",
19
+ "nord15": "#B48EAD"
20
+ },
21
+ "theme": {
22
+ "primary": {
23
+ "dark": "nord8",
24
+ "light": "nord10"
25
+ },
26
+ "secondary": {
27
+ "dark": "nord9",
28
+ "light": "nord9"
29
+ },
30
+ "accent": {
31
+ "dark": "nord7",
32
+ "light": "nord7"
33
+ },
34
+ "error": {
35
+ "dark": "nord11",
36
+ "light": "nord11"
37
+ },
38
+ "warning": {
39
+ "dark": "nord12",
40
+ "light": "nord12"
41
+ },
42
+ "success": {
43
+ "dark": "nord14",
44
+ "light": "nord14"
45
+ },
46
+ "info": {
47
+ "dark": "nord8",
48
+ "light": "nord10"
49
+ },
50
+ "text": {
51
+ "dark": "nord6",
52
+ "light": "nord0"
53
+ },
54
+ "textMuted": {
55
+ "dark": "#8B95A7",
56
+ "light": "nord1"
57
+ },
58
+ "background": {
59
+ "dark": "nord0",
60
+ "light": "nord6"
61
+ },
62
+ "backgroundPanel": {
63
+ "dark": "nord1",
64
+ "light": "nord5"
65
+ },
66
+ "backgroundElement": {
67
+ "dark": "nord2",
68
+ "light": "nord4"
69
+ },
70
+ "border": {
71
+ "dark": "nord2",
72
+ "light": "nord3"
73
+ },
74
+ "borderActive": {
75
+ "dark": "nord3",
76
+ "light": "nord2"
77
+ },
78
+ "borderSubtle": {
79
+ "dark": "nord2",
80
+ "light": "nord3"
81
+ },
82
+ "diffAdded": {
83
+ "dark": "nord14",
84
+ "light": "nord14"
85
+ },
86
+ "diffRemoved": {
87
+ "dark": "nord11",
88
+ "light": "nord11"
89
+ },
90
+ "diffContext": {
91
+ "dark": "#8B95A7",
92
+ "light": "nord3"
93
+ },
94
+ "diffHunkHeader": {
95
+ "dark": "#8B95A7",
96
+ "light": "nord3"
97
+ },
98
+ "diffHighlightAdded": {
99
+ "dark": "nord14",
100
+ "light": "nord14"
101
+ },
102
+ "diffHighlightRemoved": {
103
+ "dark": "nord11",
104
+ "light": "nord11"
105
+ },
106
+ "diffAddedBg": {
107
+ "dark": "#3B4252",
108
+ "light": "#E5E9F0"
109
+ },
110
+ "diffRemovedBg": {
111
+ "dark": "#3B4252",
112
+ "light": "#E5E9F0"
113
+ },
114
+ "diffContextBg": {
115
+ "dark": "nord1",
116
+ "light": "nord5"
117
+ },
118
+ "diffLineNumber": {
119
+ "dark": "nord2",
120
+ "light": "nord4"
121
+ },
122
+ "diffAddedLineNumberBg": {
123
+ "dark": "#3B4252",
124
+ "light": "#E5E9F0"
125
+ },
126
+ "diffRemovedLineNumberBg": {
127
+ "dark": "#3B4252",
128
+ "light": "#E5E9F0"
129
+ },
130
+ "markdownText": {
131
+ "dark": "nord4",
132
+ "light": "nord0"
133
+ },
134
+ "markdownHeading": {
135
+ "dark": "nord8",
136
+ "light": "nord10"
137
+ },
138
+ "markdownLink": {
139
+ "dark": "nord9",
140
+ "light": "nord9"
141
+ },
142
+ "markdownLinkText": {
143
+ "dark": "nord7",
144
+ "light": "nord7"
145
+ },
146
+ "markdownCode": {
147
+ "dark": "nord14",
148
+ "light": "nord14"
149
+ },
150
+ "markdownBlockQuote": {
151
+ "dark": "#8B95A7",
152
+ "light": "nord3"
153
+ },
154
+ "markdownEmph": {
155
+ "dark": "nord12",
156
+ "light": "nord12"
157
+ },
158
+ "markdownStrong": {
159
+ "dark": "nord13",
160
+ "light": "nord13"
161
+ },
162
+ "markdownHorizontalRule": {
163
+ "dark": "#8B95A7",
164
+ "light": "nord3"
165
+ },
166
+ "markdownListItem": {
167
+ "dark": "nord8",
168
+ "light": "nord10"
169
+ },
170
+ "markdownListEnumeration": {
171
+ "dark": "nord7",
172
+ "light": "nord7"
173
+ },
174
+ "markdownImage": {
175
+ "dark": "nord9",
176
+ "light": "nord9"
177
+ },
178
+ "markdownImageText": {
179
+ "dark": "nord7",
180
+ "light": "nord7"
181
+ },
182
+ "markdownCodeBlock": {
183
+ "dark": "nord4",
184
+ "light": "nord0"
185
+ },
186
+ "syntaxComment": {
187
+ "dark": "#8B95A7",
188
+ "light": "nord3"
189
+ },
190
+ "syntaxKeyword": {
191
+ "dark": "nord9",
192
+ "light": "nord9"
193
+ },
194
+ "syntaxFunction": {
195
+ "dark": "nord8",
196
+ "light": "nord8"
197
+ },
198
+ "syntaxVariable": {
199
+ "dark": "nord7",
200
+ "light": "nord7"
201
+ },
202
+ "syntaxString": {
203
+ "dark": "nord14",
204
+ "light": "nord14"
205
+ },
206
+ "syntaxNumber": {
207
+ "dark": "nord15",
208
+ "light": "nord15"
209
+ },
210
+ "syntaxType": {
211
+ "dark": "nord7",
212
+ "light": "nord7"
213
+ },
214
+ "syntaxOperator": {
215
+ "dark": "nord9",
216
+ "light": "nord9"
217
+ },
218
+ "syntaxPunctuation": {
219
+ "dark": "nord4",
220
+ "light": "nord0"
221
+ }
222
+ }
223
+ }