@brimveyn/aimux-config 0.5.3 → 0.5.6
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.
- package/package.json +1 -1
- package/src/actions.ts +58 -0
- package/src/defaults.ts +3 -0
- package/src/index.ts +21 -31
- package/src/resolver.ts +1 -1
- package/src/tui/index.ts +5 -0
- package/src/tui/registry.ts +95 -0
- package/src/tui/resolve.ts +156 -0
- package/src/tui/shiki.ts +149 -0
- package/src/tui/themes/aimux.json +110 -0
- package/src/tui/themes/aura.json +69 -0
- package/src/tui/themes/ayu.json +80 -0
- package/src/tui/themes/carbonfox.json +248 -0
- package/src/tui/themes/catppuccin-frappe.json +230 -0
- package/src/tui/themes/catppuccin-macchiato.json +230 -0
- package/src/tui/themes/catppuccin.json +112 -0
- package/src/tui/themes/cobalt2.json +225 -0
- package/src/tui/themes/cursor.json +249 -0
- package/src/tui/themes/dracula.json +219 -0
- package/src/tui/themes/everforest.json +241 -0
- package/src/tui/themes/flexoki.json +237 -0
- package/src/tui/themes/github.json +233 -0
- package/src/tui/themes/gruvbox.json +242 -0
- package/src/tui/themes/kanagawa.json +77 -0
- package/src/tui/themes/lucent-orng.json +234 -0
- package/src/tui/themes/material.json +235 -0
- package/src/tui/themes/matrix.json +77 -0
- package/src/tui/themes/mercury.json +252 -0
- package/src/tui/themes/monokai.json +221 -0
- package/src/tui/themes/nightowl.json +221 -0
- package/src/tui/themes/nord.json +223 -0
- package/src/tui/themes/one-dark.json +84 -0
- package/src/tui/themes/opencode.json +245 -0
- package/src/tui/themes/orng.json +249 -0
- package/src/tui/themes/osaka-jade.json +93 -0
- package/src/tui/themes/palenight.json +222 -0
- package/src/tui/themes/rosepine.json +234 -0
- package/src/tui/themes/solarized.json +223 -0
- package/src/tui/themes/synthwave84.json +226 -0
- package/src/tui/themes/tokyonight.json +243 -0
- package/src/tui/themes/vercel.json +245 -0
- package/src/tui/themes/vesper.json +218 -0
- package/src/tui/themes/zenburn.json +223 -0
- package/src/tui/tokens.ts +111 -0
- package/src/tui/types.ts +30 -0
- package/src/types.ts +9 -35
- package/src/house-themes.ts +0 -55
- package/src/neutral-scale.ts +0 -75
- package/src/oklch.ts +0 -164
- package/src/palette-to-shiki.ts +0 -134
- package/src/palette-utils.ts +0 -130
- package/src/themes/opencode.ts +0 -1460
- package/src/themes.ts +0 -30
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://opencode.ai/theme.json",
|
|
3
|
+
"defs": {
|
|
4
|
+
"darkBg": "#11151b",
|
|
5
|
+
"darkBgPanel": "#161b22",
|
|
6
|
+
"darkBgElement": "#1f2630",
|
|
7
|
+
"darkBorder": "#2a3340",
|
|
8
|
+
"darkBorderActive": "#7cd1b8",
|
|
9
|
+
"darkBorderSubtle": "#1a2029",
|
|
10
|
+
"darkText": "#edf4ff",
|
|
11
|
+
"darkTextMuted": "#8a97a9",
|
|
12
|
+
"darkPrimary": "#7cd1b8",
|
|
13
|
+
"darkSecondary": "#7cb3ff",
|
|
14
|
+
"darkAccent": "#c4a7e7",
|
|
15
|
+
"darkSuccess": "#8bd5ca",
|
|
16
|
+
"darkWarning": "#f6c177",
|
|
17
|
+
"darkError": "#f38ba8",
|
|
18
|
+
"darkInfo": "#7cb3ff",
|
|
19
|
+
"darkDiffAdd": "#a6e3a1",
|
|
20
|
+
"darkDiffRemove": "#f38ba8",
|
|
21
|
+
"darkDiffAddBg": "#1e3d2b",
|
|
22
|
+
"darkDiffRemoveBg": "#3b1e27",
|
|
23
|
+
"darkDiffContext": "#5c6a7a",
|
|
24
|
+
"darkDiffContextBg": "#1a2029",
|
|
25
|
+
"darkDiffHunkHeader": "#7cb3ff",
|
|
26
|
+
"darkDiffLineNumber": "#5c6a7a",
|
|
27
|
+
|
|
28
|
+
"lightBg": "#f7f9fc",
|
|
29
|
+
"lightBgPanel": "#eef2f7",
|
|
30
|
+
"lightBgElement": "#e2e8f0",
|
|
31
|
+
"lightBorder": "#c5cfdb",
|
|
32
|
+
"lightBorderActive": "#1f8a72",
|
|
33
|
+
"lightBorderSubtle": "#dbe2eb",
|
|
34
|
+
"lightText": "#11151b",
|
|
35
|
+
"lightTextMuted": "#5c6776",
|
|
36
|
+
"lightPrimary": "#1f8a72",
|
|
37
|
+
"lightSecondary": "#2e6cc1",
|
|
38
|
+
"lightAccent": "#7d57b8",
|
|
39
|
+
"lightSuccess": "#2e9a83",
|
|
40
|
+
"lightWarning": "#b8770f",
|
|
41
|
+
"lightError": "#c43b58",
|
|
42
|
+
"lightInfo": "#2e6cc1",
|
|
43
|
+
"lightDiffAdd": "#2e9a83",
|
|
44
|
+
"lightDiffRemove": "#c43b58",
|
|
45
|
+
"lightDiffAddBg": "#d4ebd9",
|
|
46
|
+
"lightDiffRemoveBg": "#f0d6dc",
|
|
47
|
+
"lightDiffContext": "#8a97a9",
|
|
48
|
+
"lightDiffContextBg": "#eef2f7",
|
|
49
|
+
"lightDiffHunkHeader": "#2e6cc1",
|
|
50
|
+
"lightDiffLineNumber": "#8a97a9"
|
|
51
|
+
},
|
|
52
|
+
"theme": {
|
|
53
|
+
"primary": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
54
|
+
"secondary": { "dark": "darkSecondary", "light": "lightSecondary" },
|
|
55
|
+
"accent": { "dark": "darkAccent", "light": "lightAccent" },
|
|
56
|
+
"error": { "dark": "darkError", "light": "lightError" },
|
|
57
|
+
"warning": { "dark": "darkWarning", "light": "lightWarning" },
|
|
58
|
+
"success": { "dark": "darkSuccess", "light": "lightSuccess" },
|
|
59
|
+
"info": { "dark": "darkInfo", "light": "lightInfo" },
|
|
60
|
+
|
|
61
|
+
"text": { "dark": "darkText", "light": "lightText" },
|
|
62
|
+
"textMuted": { "dark": "darkTextMuted", "light": "lightTextMuted" },
|
|
63
|
+
|
|
64
|
+
"background": { "dark": "darkBg", "light": "lightBg" },
|
|
65
|
+
"backgroundPanel": { "dark": "darkBgPanel", "light": "lightBgPanel" },
|
|
66
|
+
"backgroundElement": { "dark": "darkBgElement", "light": "lightBgElement" },
|
|
67
|
+
|
|
68
|
+
"border": { "dark": "darkBorder", "light": "lightBorder" },
|
|
69
|
+
"borderActive": { "dark": "darkBorderActive", "light": "lightBorderActive" },
|
|
70
|
+
"borderSubtle": { "dark": "darkBorderSubtle", "light": "lightBorderSubtle" },
|
|
71
|
+
|
|
72
|
+
"diffAdded": { "dark": "darkDiffAdd", "light": "lightDiffAdd" },
|
|
73
|
+
"diffRemoved": { "dark": "darkDiffRemove", "light": "lightDiffRemove" },
|
|
74
|
+
"diffContext": { "dark": "darkDiffContext", "light": "lightDiffContext" },
|
|
75
|
+
"diffHunkHeader": { "dark": "darkDiffHunkHeader", "light": "lightDiffHunkHeader" },
|
|
76
|
+
"diffHighlightAdded": { "dark": "darkDiffAdd", "light": "lightDiffAdd" },
|
|
77
|
+
"diffHighlightRemoved": { "dark": "darkDiffRemove", "light": "lightDiffRemove" },
|
|
78
|
+
"diffAddedBg": { "dark": "darkDiffAddBg", "light": "lightDiffAddBg" },
|
|
79
|
+
"diffRemovedBg": { "dark": "darkDiffRemoveBg", "light": "lightDiffRemoveBg" },
|
|
80
|
+
"diffContextBg": { "dark": "darkDiffContextBg", "light": "lightDiffContextBg" },
|
|
81
|
+
"diffLineNumber": { "dark": "darkDiffLineNumber", "light": "lightDiffLineNumber" },
|
|
82
|
+
"diffAddedLineNumberBg": { "dark": "darkDiffAddBg", "light": "lightDiffAddBg" },
|
|
83
|
+
"diffRemovedLineNumberBg": { "dark": "darkDiffRemoveBg", "light": "lightDiffRemoveBg" },
|
|
84
|
+
|
|
85
|
+
"markdownText": { "dark": "darkText", "light": "lightText" },
|
|
86
|
+
"markdownHeading": { "dark": "darkAccent", "light": "lightAccent" },
|
|
87
|
+
"markdownLink": { "dark": "darkInfo", "light": "lightInfo" },
|
|
88
|
+
"markdownLinkText": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
89
|
+
"markdownCode": { "dark": "darkSuccess", "light": "lightSuccess" },
|
|
90
|
+
"markdownBlockQuote": { "dark": "darkTextMuted", "light": "lightTextMuted" },
|
|
91
|
+
"markdownEmph": { "dark": "darkWarning", "light": "lightWarning" },
|
|
92
|
+
"markdownStrong": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
93
|
+
"markdownHorizontalRule": { "dark": "darkBorder", "light": "lightBorder" },
|
|
94
|
+
"markdownListItem": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
95
|
+
"markdownListEnumeration": { "dark": "darkAccent", "light": "lightAccent" },
|
|
96
|
+
"markdownImage": { "dark": "darkInfo", "light": "lightInfo" },
|
|
97
|
+
"markdownImageText": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
98
|
+
"markdownCodeBlock": { "dark": "darkText", "light": "lightText" },
|
|
99
|
+
|
|
100
|
+
"syntaxComment": { "dark": "darkTextMuted", "light": "lightTextMuted" },
|
|
101
|
+
"syntaxKeyword": { "dark": "darkAccent", "light": "lightAccent" },
|
|
102
|
+
"syntaxFunction": { "dark": "darkPrimary", "light": "lightPrimary" },
|
|
103
|
+
"syntaxVariable": { "dark": "darkText", "light": "lightText" },
|
|
104
|
+
"syntaxString": { "dark": "darkSuccess", "light": "lightSuccess" },
|
|
105
|
+
"syntaxNumber": { "dark": "darkWarning", "light": "lightWarning" },
|
|
106
|
+
"syntaxType": { "dark": "darkSecondary", "light": "lightSecondary" },
|
|
107
|
+
"syntaxOperator": { "dark": "darkInfo", "light": "lightInfo" },
|
|
108
|
+
"syntaxPunctuation": { "dark": "darkTextMuted", "light": "lightTextMuted" }
|
|
109
|
+
}
|
|
110
|
+
}
|
|
@@ -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": "#898989",
|
|
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": "diffContext",
|
|
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": "#808792",
|
|
145
|
+
"light": "textMuted"
|
|
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
|
+
}
|