gsd-pi 2.34.0-dev.0150ae9 → 2.34.0-dev.ed0bfbf

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 (28) hide show
  1. package/package.json +1 -1
  2. package/packages/pi-coding-agent/dist/modes/interactive/theme/dark.json +85 -0
  3. package/packages/pi-coding-agent/dist/modes/interactive/theme/light.json +84 -0
  4. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +335 -0
  5. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +0 -65
  6. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  7. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.js +16 -6
  8. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -1
  9. package/packages/pi-coding-agent/src/modes/interactive/theme/dark.json +85 -0
  10. package/packages/pi-coding-agent/src/modes/interactive/theme/light.json +84 -0
  11. package/packages/pi-coding-agent/src/modes/interactive/theme/theme-schema.json +335 -0
  12. package/packages/pi-coding-agent/src/modes/interactive/theme/theme.ts +18 -7
  13. package/pkg/dist/modes/interactive/theme/dark.json +85 -0
  14. package/pkg/dist/modes/interactive/theme/light.json +84 -0
  15. package/pkg/dist/modes/interactive/theme/theme-schema.json +335 -0
  16. package/pkg/dist/modes/interactive/theme/theme.d.ts +0 -65
  17. package/pkg/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  18. package/pkg/dist/modes/interactive/theme/theme.js +16 -6
  19. package/pkg/dist/modes/interactive/theme/theme.js.map +1 -1
  20. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.d.ts +0 -12
  21. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.d.ts.map +0 -1
  22. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.js +0 -175
  23. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.js.map +0 -1
  24. package/packages/pi-coding-agent/src/modes/interactive/theme/themes.ts +0 -196
  25. package/pkg/dist/modes/interactive/theme/themes.d.ts +0 -12
  26. package/pkg/dist/modes/interactive/theme/themes.d.ts.map +0 -1
  27. package/pkg/dist/modes/interactive/theme/themes.js +0 -175
  28. package/pkg/dist/modes/interactive/theme/themes.js.map +0 -1
@@ -1,196 +0,0 @@
1
- /**
2
- * Built-in theme definitions.
3
- *
4
- * Each theme is a self-contained record of color values. Variable references
5
- * (e.g. "accent") are resolved against the `vars` map at load time by the
6
- * theme engine in theme.ts.
7
- *
8
- * To add a new built-in theme, add an entry to `builtinThemes` below.
9
- */
10
-
11
- // Re-use the ThemeJson type from the schema defined in theme.ts.
12
- // We import only the type to avoid circular runtime dependencies.
13
- import type { ThemeJson } from "./theme.js";
14
-
15
- // ---------------------------------------------------------------------------
16
- // Dark theme
17
- // ---------------------------------------------------------------------------
18
-
19
- const dark: ThemeJson = {
20
- name: "dark",
21
- vars: {
22
- cyan: "#00d7ff",
23
- blue: "#5f87ff",
24
- green: "#b5bd68",
25
- red: "#cc6666",
26
- yellow: "#ffff00",
27
- gray: "#808080",
28
- dimGray: "#666666",
29
- darkGray: "#505050",
30
- accent: "#8abeb7",
31
- selectedBg: "#3a3a4a",
32
- userMsgBg: "#343541",
33
- toolPendingBg: "#282832",
34
- toolSuccessBg: "#283228",
35
- toolErrorBg: "#3c2828",
36
- customMsgBg: "#2d2838",
37
- },
38
- colors: {
39
- accent: "accent",
40
- border: "blue",
41
- borderAccent: "cyan",
42
- borderMuted: "darkGray",
43
- success: "green",
44
- error: "red",
45
- warning: "yellow",
46
- muted: "gray",
47
- dim: "dimGray",
48
- text: "",
49
- thinkingText: "gray",
50
-
51
- selectedBg: "selectedBg",
52
- userMessageBg: "userMsgBg",
53
- userMessageText: "",
54
- customMessageBg: "customMsgBg",
55
- customMessageText: "",
56
- customMessageLabel: "#9575cd",
57
- toolPendingBg: "toolPendingBg",
58
- toolSuccessBg: "toolSuccessBg",
59
- toolErrorBg: "toolErrorBg",
60
- toolTitle: "",
61
- toolOutput: "gray",
62
-
63
- mdHeading: "#f0c674",
64
- mdLink: "#81a2be",
65
- mdLinkUrl: "dimGray",
66
- mdCode: "accent",
67
- mdCodeBlock: "green",
68
- mdCodeBlockBorder: "gray",
69
- mdQuote: "gray",
70
- mdQuoteBorder: "gray",
71
- mdHr: "gray",
72
- mdListBullet: "accent",
73
-
74
- toolDiffAdded: "green",
75
- toolDiffRemoved: "red",
76
- toolDiffContext: "gray",
77
-
78
- syntaxComment: "#6A9955",
79
- syntaxKeyword: "#569CD6",
80
- syntaxFunction: "#DCDCAA",
81
- syntaxVariable: "#9CDCFE",
82
- syntaxString: "#CE9178",
83
- syntaxNumber: "#B5CEA8",
84
- syntaxType: "#4EC9B0",
85
- syntaxOperator: "#D4D4D4",
86
- syntaxPunctuation: "#D4D4D4",
87
-
88
- thinkingOff: "darkGray",
89
- thinkingMinimal: "#6e6e6e",
90
- thinkingLow: "#5f87af",
91
- thinkingMedium: "#81a2be",
92
- thinkingHigh: "#b294bb",
93
- thinkingXhigh: "#d183e8",
94
-
95
- bashMode: "green",
96
- },
97
- export: {
98
- pageBg: "#18181e",
99
- cardBg: "#1e1e24",
100
- infoBg: "#3c3728",
101
- },
102
- };
103
-
104
- // ---------------------------------------------------------------------------
105
- // Light theme
106
- // ---------------------------------------------------------------------------
107
-
108
- const light: ThemeJson = {
109
- name: "light",
110
- vars: {
111
- teal: "#5a8080",
112
- blue: "#547da7",
113
- green: "#588458",
114
- red: "#aa5555",
115
- yellow: "#9a7326",
116
- mediumGray: "#6c6c6c",
117
- dimGray: "#767676",
118
- lightGray: "#b0b0b0",
119
- selectedBg: "#d0d0e0",
120
- userMsgBg: "#e8e8e8",
121
- toolPendingBg: "#e8e8f0",
122
- toolSuccessBg: "#e8f0e8",
123
- toolErrorBg: "#f0e8e8",
124
- customMsgBg: "#ede7f6",
125
- },
126
- colors: {
127
- accent: "teal",
128
- border: "blue",
129
- borderAccent: "teal",
130
- borderMuted: "lightGray",
131
- success: "green",
132
- error: "red",
133
- warning: "yellow",
134
- muted: "mediumGray",
135
- dim: "dimGray",
136
- text: "",
137
- thinkingText: "mediumGray",
138
-
139
- selectedBg: "selectedBg",
140
- userMessageBg: "userMsgBg",
141
- userMessageText: "",
142
- customMessageBg: "customMsgBg",
143
- customMessageText: "",
144
- customMessageLabel: "#7e57c2",
145
- toolPendingBg: "toolPendingBg",
146
- toolSuccessBg: "toolSuccessBg",
147
- toolErrorBg: "toolErrorBg",
148
- toolTitle: "",
149
- toolOutput: "mediumGray",
150
-
151
- mdHeading: "yellow",
152
- mdLink: "blue",
153
- mdLinkUrl: "dimGray",
154
- mdCode: "teal",
155
- mdCodeBlock: "green",
156
- mdCodeBlockBorder: "mediumGray",
157
- mdQuote: "mediumGray",
158
- mdQuoteBorder: "mediumGray",
159
- mdHr: "mediumGray",
160
- mdListBullet: "green",
161
-
162
- toolDiffAdded: "green",
163
- toolDiffRemoved: "red",
164
- toolDiffContext: "mediumGray",
165
-
166
- syntaxComment: "#008000",
167
- syntaxKeyword: "#0000FF",
168
- syntaxFunction: "#795E26",
169
- syntaxVariable: "#001080",
170
- syntaxString: "#A31515",
171
- syntaxNumber: "#098658",
172
- syntaxType: "#267F99",
173
- syntaxOperator: "#000000",
174
- syntaxPunctuation: "#000000",
175
-
176
- thinkingOff: "lightGray",
177
- thinkingMinimal: "#767676",
178
- thinkingLow: "blue",
179
- thinkingMedium: "teal",
180
- thinkingHigh: "#875f87",
181
- thinkingXhigh: "#8b008b",
182
-
183
- bashMode: "green",
184
- },
185
- export: {
186
- pageBg: "#f8f8f8",
187
- cardBg: "#ffffff",
188
- infoBg: "#fffae6",
189
- },
190
- };
191
-
192
- // ---------------------------------------------------------------------------
193
- // Export
194
- // ---------------------------------------------------------------------------
195
-
196
- export const builtinThemes: Record<string, ThemeJson> = { dark, light };
@@ -1,12 +0,0 @@
1
- /**
2
- * Built-in theme definitions.
3
- *
4
- * Each theme is a self-contained record of color values. Variable references
5
- * (e.g. "accent") are resolved against the `vars` map at load time by the
6
- * theme engine in theme.ts.
7
- *
8
- * To add a new built-in theme, add an entry to `builtinThemes` below.
9
- */
10
- import type { ThemeJson } from "./theme.js";
11
- export declare const builtinThemes: Record<string, ThemeJson>;
12
- //# sourceMappingURL=themes.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../../../../src/modes/interactive/theme/themes.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAuL5C,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAmB,CAAC"}
@@ -1,175 +0,0 @@
1
- /**
2
- * Built-in theme definitions.
3
- *
4
- * Each theme is a self-contained record of color values. Variable references
5
- * (e.g. "accent") are resolved against the `vars` map at load time by the
6
- * theme engine in theme.ts.
7
- *
8
- * To add a new built-in theme, add an entry to `builtinThemes` below.
9
- */
10
- // ---------------------------------------------------------------------------
11
- // Dark theme
12
- // ---------------------------------------------------------------------------
13
- const dark = {
14
- name: "dark",
15
- vars: {
16
- cyan: "#00d7ff",
17
- blue: "#5f87ff",
18
- green: "#b5bd68",
19
- red: "#cc6666",
20
- yellow: "#ffff00",
21
- gray: "#808080",
22
- dimGray: "#666666",
23
- darkGray: "#505050",
24
- accent: "#8abeb7",
25
- selectedBg: "#3a3a4a",
26
- userMsgBg: "#343541",
27
- toolPendingBg: "#282832",
28
- toolSuccessBg: "#283228",
29
- toolErrorBg: "#3c2828",
30
- customMsgBg: "#2d2838",
31
- },
32
- colors: {
33
- accent: "accent",
34
- border: "blue",
35
- borderAccent: "cyan",
36
- borderMuted: "darkGray",
37
- success: "green",
38
- error: "red",
39
- warning: "yellow",
40
- muted: "gray",
41
- dim: "dimGray",
42
- text: "",
43
- thinkingText: "gray",
44
- selectedBg: "selectedBg",
45
- userMessageBg: "userMsgBg",
46
- userMessageText: "",
47
- customMessageBg: "customMsgBg",
48
- customMessageText: "",
49
- customMessageLabel: "#9575cd",
50
- toolPendingBg: "toolPendingBg",
51
- toolSuccessBg: "toolSuccessBg",
52
- toolErrorBg: "toolErrorBg",
53
- toolTitle: "",
54
- toolOutput: "gray",
55
- mdHeading: "#f0c674",
56
- mdLink: "#81a2be",
57
- mdLinkUrl: "dimGray",
58
- mdCode: "accent",
59
- mdCodeBlock: "green",
60
- mdCodeBlockBorder: "gray",
61
- mdQuote: "gray",
62
- mdQuoteBorder: "gray",
63
- mdHr: "gray",
64
- mdListBullet: "accent",
65
- toolDiffAdded: "green",
66
- toolDiffRemoved: "red",
67
- toolDiffContext: "gray",
68
- syntaxComment: "#6A9955",
69
- syntaxKeyword: "#569CD6",
70
- syntaxFunction: "#DCDCAA",
71
- syntaxVariable: "#9CDCFE",
72
- syntaxString: "#CE9178",
73
- syntaxNumber: "#B5CEA8",
74
- syntaxType: "#4EC9B0",
75
- syntaxOperator: "#D4D4D4",
76
- syntaxPunctuation: "#D4D4D4",
77
- thinkingOff: "darkGray",
78
- thinkingMinimal: "#6e6e6e",
79
- thinkingLow: "#5f87af",
80
- thinkingMedium: "#81a2be",
81
- thinkingHigh: "#b294bb",
82
- thinkingXhigh: "#d183e8",
83
- bashMode: "green",
84
- },
85
- export: {
86
- pageBg: "#18181e",
87
- cardBg: "#1e1e24",
88
- infoBg: "#3c3728",
89
- },
90
- };
91
- // ---------------------------------------------------------------------------
92
- // Light theme
93
- // ---------------------------------------------------------------------------
94
- const light = {
95
- name: "light",
96
- vars: {
97
- teal: "#5a8080",
98
- blue: "#547da7",
99
- green: "#588458",
100
- red: "#aa5555",
101
- yellow: "#9a7326",
102
- mediumGray: "#6c6c6c",
103
- dimGray: "#767676",
104
- lightGray: "#b0b0b0",
105
- selectedBg: "#d0d0e0",
106
- userMsgBg: "#e8e8e8",
107
- toolPendingBg: "#e8e8f0",
108
- toolSuccessBg: "#e8f0e8",
109
- toolErrorBg: "#f0e8e8",
110
- customMsgBg: "#ede7f6",
111
- },
112
- colors: {
113
- accent: "teal",
114
- border: "blue",
115
- borderAccent: "teal",
116
- borderMuted: "lightGray",
117
- success: "green",
118
- error: "red",
119
- warning: "yellow",
120
- muted: "mediumGray",
121
- dim: "dimGray",
122
- text: "",
123
- thinkingText: "mediumGray",
124
- selectedBg: "selectedBg",
125
- userMessageBg: "userMsgBg",
126
- userMessageText: "",
127
- customMessageBg: "customMsgBg",
128
- customMessageText: "",
129
- customMessageLabel: "#7e57c2",
130
- toolPendingBg: "toolPendingBg",
131
- toolSuccessBg: "toolSuccessBg",
132
- toolErrorBg: "toolErrorBg",
133
- toolTitle: "",
134
- toolOutput: "mediumGray",
135
- mdHeading: "yellow",
136
- mdLink: "blue",
137
- mdLinkUrl: "dimGray",
138
- mdCode: "teal",
139
- mdCodeBlock: "green",
140
- mdCodeBlockBorder: "mediumGray",
141
- mdQuote: "mediumGray",
142
- mdQuoteBorder: "mediumGray",
143
- mdHr: "mediumGray",
144
- mdListBullet: "green",
145
- toolDiffAdded: "green",
146
- toolDiffRemoved: "red",
147
- toolDiffContext: "mediumGray",
148
- syntaxComment: "#008000",
149
- syntaxKeyword: "#0000FF",
150
- syntaxFunction: "#795E26",
151
- syntaxVariable: "#001080",
152
- syntaxString: "#A31515",
153
- syntaxNumber: "#098658",
154
- syntaxType: "#267F99",
155
- syntaxOperator: "#000000",
156
- syntaxPunctuation: "#000000",
157
- thinkingOff: "lightGray",
158
- thinkingMinimal: "#767676",
159
- thinkingLow: "blue",
160
- thinkingMedium: "teal",
161
- thinkingHigh: "#875f87",
162
- thinkingXhigh: "#8b008b",
163
- bashMode: "green",
164
- },
165
- export: {
166
- pageBg: "#f8f8f8",
167
- cardBg: "#ffffff",
168
- infoBg: "#fffae6",
169
- },
170
- };
171
- // ---------------------------------------------------------------------------
172
- // Export
173
- // ---------------------------------------------------------------------------
174
- export const builtinThemes = { dark, light };
175
- //# sourceMappingURL=themes.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"themes.js","sourceRoot":"","sources":["../../../../src/modes/interactive/theme/themes.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Built-in theme definitions.\n *\n * Each theme is a self-contained record of color values. Variable references\n * (e.g. \"accent\") are resolved against the `vars` map at load time by the\n * theme engine in theme.ts.\n *\n * To add a new built-in theme, add an entry to `builtinThemes` below.\n */\n\n// Re-use the ThemeJson type from the schema defined in theme.ts.\n// We import only the type to avoid circular runtime dependencies.\nimport type { ThemeJson } from \"./theme.js\";\n\n// ---------------------------------------------------------------------------\n// Dark theme\n// ---------------------------------------------------------------------------\n\nconst dark: ThemeJson = {\n\tname: \"dark\",\n\tvars: {\n\t\tcyan: \"#00d7ff\",\n\t\tblue: \"#5f87ff\",\n\t\tgreen: \"#b5bd68\",\n\t\tred: \"#cc6666\",\n\t\tyellow: \"#ffff00\",\n\t\tgray: \"#808080\",\n\t\tdimGray: \"#666666\",\n\t\tdarkGray: \"#505050\",\n\t\taccent: \"#8abeb7\",\n\t\tselectedBg: \"#3a3a4a\",\n\t\tuserMsgBg: \"#343541\",\n\t\ttoolPendingBg: \"#282832\",\n\t\ttoolSuccessBg: \"#283228\",\n\t\ttoolErrorBg: \"#3c2828\",\n\t\tcustomMsgBg: \"#2d2838\",\n\t},\n\tcolors: {\n\t\taccent: \"accent\",\n\t\tborder: \"blue\",\n\t\tborderAccent: \"cyan\",\n\t\tborderMuted: \"darkGray\",\n\t\tsuccess: \"green\",\n\t\terror: \"red\",\n\t\twarning: \"yellow\",\n\t\tmuted: \"gray\",\n\t\tdim: \"dimGray\",\n\t\ttext: \"\",\n\t\tthinkingText: \"gray\",\n\n\t\tselectedBg: \"selectedBg\",\n\t\tuserMessageBg: \"userMsgBg\",\n\t\tuserMessageText: \"\",\n\t\tcustomMessageBg: \"customMsgBg\",\n\t\tcustomMessageText: \"\",\n\t\tcustomMessageLabel: \"#9575cd\",\n\t\ttoolPendingBg: \"toolPendingBg\",\n\t\ttoolSuccessBg: \"toolSuccessBg\",\n\t\ttoolErrorBg: \"toolErrorBg\",\n\t\ttoolTitle: \"\",\n\t\ttoolOutput: \"gray\",\n\n\t\tmdHeading: \"#f0c674\",\n\t\tmdLink: \"#81a2be\",\n\t\tmdLinkUrl: \"dimGray\",\n\t\tmdCode: \"accent\",\n\t\tmdCodeBlock: \"green\",\n\t\tmdCodeBlockBorder: \"gray\",\n\t\tmdQuote: \"gray\",\n\t\tmdQuoteBorder: \"gray\",\n\t\tmdHr: \"gray\",\n\t\tmdListBullet: \"accent\",\n\n\t\ttoolDiffAdded: \"green\",\n\t\ttoolDiffRemoved: \"red\",\n\t\ttoolDiffContext: \"gray\",\n\n\t\tsyntaxComment: \"#6A9955\",\n\t\tsyntaxKeyword: \"#569CD6\",\n\t\tsyntaxFunction: \"#DCDCAA\",\n\t\tsyntaxVariable: \"#9CDCFE\",\n\t\tsyntaxString: \"#CE9178\",\n\t\tsyntaxNumber: \"#B5CEA8\",\n\t\tsyntaxType: \"#4EC9B0\",\n\t\tsyntaxOperator: \"#D4D4D4\",\n\t\tsyntaxPunctuation: \"#D4D4D4\",\n\n\t\tthinkingOff: \"darkGray\",\n\t\tthinkingMinimal: \"#6e6e6e\",\n\t\tthinkingLow: \"#5f87af\",\n\t\tthinkingMedium: \"#81a2be\",\n\t\tthinkingHigh: \"#b294bb\",\n\t\tthinkingXhigh: \"#d183e8\",\n\n\t\tbashMode: \"green\",\n\t},\n\texport: {\n\t\tpageBg: \"#18181e\",\n\t\tcardBg: \"#1e1e24\",\n\t\tinfoBg: \"#3c3728\",\n\t},\n};\n\n// ---------------------------------------------------------------------------\n// Light theme\n// ---------------------------------------------------------------------------\n\nconst light: ThemeJson = {\n\tname: \"light\",\n\tvars: {\n\t\tteal: \"#5a8080\",\n\t\tblue: \"#547da7\",\n\t\tgreen: \"#588458\",\n\t\tred: \"#aa5555\",\n\t\tyellow: \"#9a7326\",\n\t\tmediumGray: \"#6c6c6c\",\n\t\tdimGray: \"#767676\",\n\t\tlightGray: \"#b0b0b0\",\n\t\tselectedBg: \"#d0d0e0\",\n\t\tuserMsgBg: \"#e8e8e8\",\n\t\ttoolPendingBg: \"#e8e8f0\",\n\t\ttoolSuccessBg: \"#e8f0e8\",\n\t\ttoolErrorBg: \"#f0e8e8\",\n\t\tcustomMsgBg: \"#ede7f6\",\n\t},\n\tcolors: {\n\t\taccent: \"teal\",\n\t\tborder: \"blue\",\n\t\tborderAccent: \"teal\",\n\t\tborderMuted: \"lightGray\",\n\t\tsuccess: \"green\",\n\t\terror: \"red\",\n\t\twarning: \"yellow\",\n\t\tmuted: \"mediumGray\",\n\t\tdim: \"dimGray\",\n\t\ttext: \"\",\n\t\tthinkingText: \"mediumGray\",\n\n\t\tselectedBg: \"selectedBg\",\n\t\tuserMessageBg: \"userMsgBg\",\n\t\tuserMessageText: \"\",\n\t\tcustomMessageBg: \"customMsgBg\",\n\t\tcustomMessageText: \"\",\n\t\tcustomMessageLabel: \"#7e57c2\",\n\t\ttoolPendingBg: \"toolPendingBg\",\n\t\ttoolSuccessBg: \"toolSuccessBg\",\n\t\ttoolErrorBg: \"toolErrorBg\",\n\t\ttoolTitle: \"\",\n\t\ttoolOutput: \"mediumGray\",\n\n\t\tmdHeading: \"yellow\",\n\t\tmdLink: \"blue\",\n\t\tmdLinkUrl: \"dimGray\",\n\t\tmdCode: \"teal\",\n\t\tmdCodeBlock: \"green\",\n\t\tmdCodeBlockBorder: \"mediumGray\",\n\t\tmdQuote: \"mediumGray\",\n\t\tmdQuoteBorder: \"mediumGray\",\n\t\tmdHr: \"mediumGray\",\n\t\tmdListBullet: \"green\",\n\n\t\ttoolDiffAdded: \"green\",\n\t\ttoolDiffRemoved: \"red\",\n\t\ttoolDiffContext: \"mediumGray\",\n\n\t\tsyntaxComment: \"#008000\",\n\t\tsyntaxKeyword: \"#0000FF\",\n\t\tsyntaxFunction: \"#795E26\",\n\t\tsyntaxVariable: \"#001080\",\n\t\tsyntaxString: \"#A31515\",\n\t\tsyntaxNumber: \"#098658\",\n\t\tsyntaxType: \"#267F99\",\n\t\tsyntaxOperator: \"#000000\",\n\t\tsyntaxPunctuation: \"#000000\",\n\n\t\tthinkingOff: \"lightGray\",\n\t\tthinkingMinimal: \"#767676\",\n\t\tthinkingLow: \"blue\",\n\t\tthinkingMedium: \"teal\",\n\t\tthinkingHigh: \"#875f87\",\n\t\tthinkingXhigh: \"#8b008b\",\n\n\t\tbashMode: \"green\",\n\t},\n\texport: {\n\t\tpageBg: \"#f8f8f8\",\n\t\tcardBg: \"#ffffff\",\n\t\tinfoBg: \"#fffae6\",\n\t},\n};\n\n// ---------------------------------------------------------------------------\n// Export\n// ---------------------------------------------------------------------------\n\nexport const builtinThemes: Record<string, ThemeJson> = { dark, light };\n"]}