codemaxxing 0.1.12 → 0.1.13
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/dist/themes.js +200 -0
- package/package.json +1 -1
- package/src/themes.ts +200 -0
package/dist/themes.js
CHANGED
|
@@ -139,6 +139,206 @@ export const THEMES = {
|
|
|
139
139
|
suggestion: "#00CC00",
|
|
140
140
|
},
|
|
141
141
|
},
|
|
142
|
+
catppuccin: {
|
|
143
|
+
name: "Catppuccin",
|
|
144
|
+
description: "Soothing pastel — Mocha flavor",
|
|
145
|
+
colors: {
|
|
146
|
+
primary: "#CBA6F7",
|
|
147
|
+
secondary: "#F5C2E7",
|
|
148
|
+
muted: "#6C7086",
|
|
149
|
+
text: "#CDD6F4",
|
|
150
|
+
userInput: "#89DCEB",
|
|
151
|
+
response: "#CBA6F7",
|
|
152
|
+
tool: "#F5C2E7",
|
|
153
|
+
toolResult: "#6C7086",
|
|
154
|
+
error: "#F38BA8",
|
|
155
|
+
success: "#A6E3A1",
|
|
156
|
+
warning: "#FAB387",
|
|
157
|
+
spinner: "#CBA6F7",
|
|
158
|
+
border: "#CBA6F7",
|
|
159
|
+
suggestion: "#F5C2E7",
|
|
160
|
+
},
|
|
161
|
+
},
|
|
162
|
+
"tokyo-night": {
|
|
163
|
+
name: "Tokyo Night",
|
|
164
|
+
description: "Neon-lit city vibes",
|
|
165
|
+
colors: {
|
|
166
|
+
primary: "#7AA2F7",
|
|
167
|
+
secondary: "#BB9AF7",
|
|
168
|
+
muted: "#565F89",
|
|
169
|
+
text: "#C0CAF5",
|
|
170
|
+
userInput: "#7DCFFF",
|
|
171
|
+
response: "#7AA2F7",
|
|
172
|
+
tool: "#BB9AF7",
|
|
173
|
+
toolResult: "#565F89",
|
|
174
|
+
error: "#F7768E",
|
|
175
|
+
success: "#9ECE6A",
|
|
176
|
+
warning: "#E0AF68",
|
|
177
|
+
spinner: "#7AA2F7",
|
|
178
|
+
border: "#7AA2F7",
|
|
179
|
+
suggestion: "#BB9AF7",
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
"one-dark": {
|
|
183
|
+
name: "One Dark",
|
|
184
|
+
description: "Atom editor classic",
|
|
185
|
+
colors: {
|
|
186
|
+
primary: "#61AFEF",
|
|
187
|
+
secondary: "#C678DD",
|
|
188
|
+
muted: "#5C6370",
|
|
189
|
+
text: "#ABB2BF",
|
|
190
|
+
userInput: "#56B6C2",
|
|
191
|
+
response: "#61AFEF",
|
|
192
|
+
tool: "#C678DD",
|
|
193
|
+
toolResult: "#5C6370",
|
|
194
|
+
error: "#E06C75",
|
|
195
|
+
success: "#98C379",
|
|
196
|
+
warning: "#E5C07B",
|
|
197
|
+
spinner: "#61AFEF",
|
|
198
|
+
border: "#61AFEF",
|
|
199
|
+
suggestion: "#C678DD",
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
"rose-pine": {
|
|
203
|
+
name: "Rosé Pine",
|
|
204
|
+
description: "Elegant dark florals",
|
|
205
|
+
colors: {
|
|
206
|
+
primary: "#EBBCBA",
|
|
207
|
+
secondary: "#C4A7E7",
|
|
208
|
+
muted: "#6E6A86",
|
|
209
|
+
text: "#E0DEF4",
|
|
210
|
+
userInput: "#9CCFD8",
|
|
211
|
+
response: "#EBBCBA",
|
|
212
|
+
tool: "#C4A7E7",
|
|
213
|
+
toolResult: "#6E6A86",
|
|
214
|
+
error: "#EB6F92",
|
|
215
|
+
success: "#31748F",
|
|
216
|
+
warning: "#F6C177",
|
|
217
|
+
spinner: "#EBBCBA",
|
|
218
|
+
border: "#EBBCBA",
|
|
219
|
+
suggestion: "#C4A7E7",
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
kanagawa: {
|
|
223
|
+
name: "Kanagawa",
|
|
224
|
+
description: "Japanese ink painting — deep ocean blues",
|
|
225
|
+
colors: {
|
|
226
|
+
primary: "#7E9CD8",
|
|
227
|
+
secondary: "#957FB8",
|
|
228
|
+
muted: "#727169",
|
|
229
|
+
text: "#DCD7BA",
|
|
230
|
+
userInput: "#7FB4CA",
|
|
231
|
+
response: "#7E9CD8",
|
|
232
|
+
tool: "#957FB8",
|
|
233
|
+
toolResult: "#727169",
|
|
234
|
+
error: "#E82424",
|
|
235
|
+
success: "#76946A",
|
|
236
|
+
warning: "#FF9E3B",
|
|
237
|
+
spinner: "#7E9CD8",
|
|
238
|
+
border: "#7E9CD8",
|
|
239
|
+
suggestion: "#957FB8",
|
|
240
|
+
},
|
|
241
|
+
},
|
|
242
|
+
cyberpunk: {
|
|
243
|
+
name: "Cyberpunk",
|
|
244
|
+
description: "Hot pink & electric yellow — Night City",
|
|
245
|
+
colors: {
|
|
246
|
+
primary: "#FF2079",
|
|
247
|
+
secondary: "#FCEE09",
|
|
248
|
+
muted: "#7B6995",
|
|
249
|
+
text: "#E8E3E3",
|
|
250
|
+
userInput: "#FCEE09",
|
|
251
|
+
response: "#FF2079",
|
|
252
|
+
tool: "#00FFC8",
|
|
253
|
+
toolResult: "#7B6995",
|
|
254
|
+
error: "#FF0040",
|
|
255
|
+
success: "#00FFC8",
|
|
256
|
+
warning: "#FCEE09",
|
|
257
|
+
spinner: "#FF2079",
|
|
258
|
+
border: "#FF2079",
|
|
259
|
+
suggestion: "#FCEE09",
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
synthwave: {
|
|
263
|
+
name: "Synthwave",
|
|
264
|
+
description: "Retro 80s sunset — outrun aesthetics",
|
|
265
|
+
colors: {
|
|
266
|
+
primary: "#F92AAD",
|
|
267
|
+
secondary: "#E9F501",
|
|
268
|
+
muted: "#614D85",
|
|
269
|
+
text: "#F4EEFF",
|
|
270
|
+
userInput: "#36F9F6",
|
|
271
|
+
response: "#F92AAD",
|
|
272
|
+
tool: "#E9F501",
|
|
273
|
+
toolResult: "#614D85",
|
|
274
|
+
error: "#FE4450",
|
|
275
|
+
success: "#72F1B8",
|
|
276
|
+
warning: "#FF7F11",
|
|
277
|
+
spinner: "#F92AAD",
|
|
278
|
+
border: "#F92AAD",
|
|
279
|
+
suggestion: "#36F9F6",
|
|
280
|
+
},
|
|
281
|
+
},
|
|
282
|
+
"blood-moon": {
|
|
283
|
+
name: "Blood Moon",
|
|
284
|
+
description: "Dark crimson — for the night coders",
|
|
285
|
+
colors: {
|
|
286
|
+
primary: "#FF4444",
|
|
287
|
+
secondary: "#CC2936",
|
|
288
|
+
muted: "#5C2626",
|
|
289
|
+
text: "#E0C4C4",
|
|
290
|
+
userInput: "#FF6B6B",
|
|
291
|
+
response: "#FF4444",
|
|
292
|
+
tool: "#CC2936",
|
|
293
|
+
toolResult: "#5C2626",
|
|
294
|
+
error: "#FF0000",
|
|
295
|
+
success: "#4CAF50",
|
|
296
|
+
warning: "#FF8C00",
|
|
297
|
+
spinner: "#FF4444",
|
|
298
|
+
border: "#FF4444",
|
|
299
|
+
suggestion: "#CC2936",
|
|
300
|
+
},
|
|
301
|
+
},
|
|
302
|
+
aurora: {
|
|
303
|
+
name: "Aurora",
|
|
304
|
+
description: "Northern lights — shifting greens & purples",
|
|
305
|
+
colors: {
|
|
306
|
+
primary: "#82AAFF",
|
|
307
|
+
secondary: "#C792EA",
|
|
308
|
+
muted: "#546E7A",
|
|
309
|
+
text: "#D6DEEB",
|
|
310
|
+
userInput: "#7FDBCA",
|
|
311
|
+
response: "#82AAFF",
|
|
312
|
+
tool: "#C792EA",
|
|
313
|
+
toolResult: "#546E7A",
|
|
314
|
+
error: "#EF5350",
|
|
315
|
+
success: "#22DA6E",
|
|
316
|
+
warning: "#FFCB6B",
|
|
317
|
+
spinner: "#82AAFF",
|
|
318
|
+
border: "#82AAFF",
|
|
319
|
+
suggestion: "#C792EA",
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
"hot-dog": {
|
|
323
|
+
name: "Hot Dog",
|
|
324
|
+
description: "Cursed ketchup & mustard — you asked for it",
|
|
325
|
+
colors: {
|
|
326
|
+
primary: "#FF0000",
|
|
327
|
+
secondary: "#FFFF00",
|
|
328
|
+
muted: "#AA6600",
|
|
329
|
+
text: "#FFFF00",
|
|
330
|
+
userInput: "#FF0000",
|
|
331
|
+
response: "#FFFF00",
|
|
332
|
+
tool: "#FF6600",
|
|
333
|
+
toolResult: "#AA6600",
|
|
334
|
+
error: "#FF0000",
|
|
335
|
+
success: "#00FF00",
|
|
336
|
+
warning: "#FFFF00",
|
|
337
|
+
spinner: "#FF0000",
|
|
338
|
+
border: "#FF0000",
|
|
339
|
+
suggestion: "#FFFF00",
|
|
340
|
+
},
|
|
341
|
+
},
|
|
142
342
|
};
|
|
143
343
|
export const DEFAULT_THEME = "nord";
|
|
144
344
|
export function getTheme(name) {
|
package/package.json
CHANGED
package/src/themes.ts
CHANGED
|
@@ -160,6 +160,206 @@ export const THEMES: Record<string, Theme> = {
|
|
|
160
160
|
suggestion: "#00CC00",
|
|
161
161
|
},
|
|
162
162
|
},
|
|
163
|
+
catppuccin: {
|
|
164
|
+
name: "Catppuccin",
|
|
165
|
+
description: "Soothing pastel — Mocha flavor",
|
|
166
|
+
colors: {
|
|
167
|
+
primary: "#CBA6F7",
|
|
168
|
+
secondary: "#F5C2E7",
|
|
169
|
+
muted: "#6C7086",
|
|
170
|
+
text: "#CDD6F4",
|
|
171
|
+
userInput: "#89DCEB",
|
|
172
|
+
response: "#CBA6F7",
|
|
173
|
+
tool: "#F5C2E7",
|
|
174
|
+
toolResult: "#6C7086",
|
|
175
|
+
error: "#F38BA8",
|
|
176
|
+
success: "#A6E3A1",
|
|
177
|
+
warning: "#FAB387",
|
|
178
|
+
spinner: "#CBA6F7",
|
|
179
|
+
border: "#CBA6F7",
|
|
180
|
+
suggestion: "#F5C2E7",
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
"tokyo-night": {
|
|
184
|
+
name: "Tokyo Night",
|
|
185
|
+
description: "Neon-lit city vibes",
|
|
186
|
+
colors: {
|
|
187
|
+
primary: "#7AA2F7",
|
|
188
|
+
secondary: "#BB9AF7",
|
|
189
|
+
muted: "#565F89",
|
|
190
|
+
text: "#C0CAF5",
|
|
191
|
+
userInput: "#7DCFFF",
|
|
192
|
+
response: "#7AA2F7",
|
|
193
|
+
tool: "#BB9AF7",
|
|
194
|
+
toolResult: "#565F89",
|
|
195
|
+
error: "#F7768E",
|
|
196
|
+
success: "#9ECE6A",
|
|
197
|
+
warning: "#E0AF68",
|
|
198
|
+
spinner: "#7AA2F7",
|
|
199
|
+
border: "#7AA2F7",
|
|
200
|
+
suggestion: "#BB9AF7",
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
"one-dark": {
|
|
204
|
+
name: "One Dark",
|
|
205
|
+
description: "Atom editor classic",
|
|
206
|
+
colors: {
|
|
207
|
+
primary: "#61AFEF",
|
|
208
|
+
secondary: "#C678DD",
|
|
209
|
+
muted: "#5C6370",
|
|
210
|
+
text: "#ABB2BF",
|
|
211
|
+
userInput: "#56B6C2",
|
|
212
|
+
response: "#61AFEF",
|
|
213
|
+
tool: "#C678DD",
|
|
214
|
+
toolResult: "#5C6370",
|
|
215
|
+
error: "#E06C75",
|
|
216
|
+
success: "#98C379",
|
|
217
|
+
warning: "#E5C07B",
|
|
218
|
+
spinner: "#61AFEF",
|
|
219
|
+
border: "#61AFEF",
|
|
220
|
+
suggestion: "#C678DD",
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
"rose-pine": {
|
|
224
|
+
name: "Rosé Pine",
|
|
225
|
+
description: "Elegant dark florals",
|
|
226
|
+
colors: {
|
|
227
|
+
primary: "#EBBCBA",
|
|
228
|
+
secondary: "#C4A7E7",
|
|
229
|
+
muted: "#6E6A86",
|
|
230
|
+
text: "#E0DEF4",
|
|
231
|
+
userInput: "#9CCFD8",
|
|
232
|
+
response: "#EBBCBA",
|
|
233
|
+
tool: "#C4A7E7",
|
|
234
|
+
toolResult: "#6E6A86",
|
|
235
|
+
error: "#EB6F92",
|
|
236
|
+
success: "#31748F",
|
|
237
|
+
warning: "#F6C177",
|
|
238
|
+
spinner: "#EBBCBA",
|
|
239
|
+
border: "#EBBCBA",
|
|
240
|
+
suggestion: "#C4A7E7",
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
kanagawa: {
|
|
244
|
+
name: "Kanagawa",
|
|
245
|
+
description: "Japanese ink painting — deep ocean blues",
|
|
246
|
+
colors: {
|
|
247
|
+
primary: "#7E9CD8",
|
|
248
|
+
secondary: "#957FB8",
|
|
249
|
+
muted: "#727169",
|
|
250
|
+
text: "#DCD7BA",
|
|
251
|
+
userInput: "#7FB4CA",
|
|
252
|
+
response: "#7E9CD8",
|
|
253
|
+
tool: "#957FB8",
|
|
254
|
+
toolResult: "#727169",
|
|
255
|
+
error: "#E82424",
|
|
256
|
+
success: "#76946A",
|
|
257
|
+
warning: "#FF9E3B",
|
|
258
|
+
spinner: "#7E9CD8",
|
|
259
|
+
border: "#7E9CD8",
|
|
260
|
+
suggestion: "#957FB8",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
cyberpunk: {
|
|
264
|
+
name: "Cyberpunk",
|
|
265
|
+
description: "Hot pink & electric yellow — Night City",
|
|
266
|
+
colors: {
|
|
267
|
+
primary: "#FF2079",
|
|
268
|
+
secondary: "#FCEE09",
|
|
269
|
+
muted: "#7B6995",
|
|
270
|
+
text: "#E8E3E3",
|
|
271
|
+
userInput: "#FCEE09",
|
|
272
|
+
response: "#FF2079",
|
|
273
|
+
tool: "#00FFC8",
|
|
274
|
+
toolResult: "#7B6995",
|
|
275
|
+
error: "#FF0040",
|
|
276
|
+
success: "#00FFC8",
|
|
277
|
+
warning: "#FCEE09",
|
|
278
|
+
spinner: "#FF2079",
|
|
279
|
+
border: "#FF2079",
|
|
280
|
+
suggestion: "#FCEE09",
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
synthwave: {
|
|
284
|
+
name: "Synthwave",
|
|
285
|
+
description: "Retro 80s sunset — outrun aesthetics",
|
|
286
|
+
colors: {
|
|
287
|
+
primary: "#F92AAD",
|
|
288
|
+
secondary: "#E9F501",
|
|
289
|
+
muted: "#614D85",
|
|
290
|
+
text: "#F4EEFF",
|
|
291
|
+
userInput: "#36F9F6",
|
|
292
|
+
response: "#F92AAD",
|
|
293
|
+
tool: "#E9F501",
|
|
294
|
+
toolResult: "#614D85",
|
|
295
|
+
error: "#FE4450",
|
|
296
|
+
success: "#72F1B8",
|
|
297
|
+
warning: "#FF7F11",
|
|
298
|
+
spinner: "#F92AAD",
|
|
299
|
+
border: "#F92AAD",
|
|
300
|
+
suggestion: "#36F9F6",
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
"blood-moon": {
|
|
304
|
+
name: "Blood Moon",
|
|
305
|
+
description: "Dark crimson — for the night coders",
|
|
306
|
+
colors: {
|
|
307
|
+
primary: "#FF4444",
|
|
308
|
+
secondary: "#CC2936",
|
|
309
|
+
muted: "#5C2626",
|
|
310
|
+
text: "#E0C4C4",
|
|
311
|
+
userInput: "#FF6B6B",
|
|
312
|
+
response: "#FF4444",
|
|
313
|
+
tool: "#CC2936",
|
|
314
|
+
toolResult: "#5C2626",
|
|
315
|
+
error: "#FF0000",
|
|
316
|
+
success: "#4CAF50",
|
|
317
|
+
warning: "#FF8C00",
|
|
318
|
+
spinner: "#FF4444",
|
|
319
|
+
border: "#FF4444",
|
|
320
|
+
suggestion: "#CC2936",
|
|
321
|
+
},
|
|
322
|
+
},
|
|
323
|
+
aurora: {
|
|
324
|
+
name: "Aurora",
|
|
325
|
+
description: "Northern lights — shifting greens & purples",
|
|
326
|
+
colors: {
|
|
327
|
+
primary: "#82AAFF",
|
|
328
|
+
secondary: "#C792EA",
|
|
329
|
+
muted: "#546E7A",
|
|
330
|
+
text: "#D6DEEB",
|
|
331
|
+
userInput: "#7FDBCA",
|
|
332
|
+
response: "#82AAFF",
|
|
333
|
+
tool: "#C792EA",
|
|
334
|
+
toolResult: "#546E7A",
|
|
335
|
+
error: "#EF5350",
|
|
336
|
+
success: "#22DA6E",
|
|
337
|
+
warning: "#FFCB6B",
|
|
338
|
+
spinner: "#82AAFF",
|
|
339
|
+
border: "#82AAFF",
|
|
340
|
+
suggestion: "#C792EA",
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
"hot-dog": {
|
|
344
|
+
name: "Hot Dog",
|
|
345
|
+
description: "Cursed ketchup & mustard — you asked for it",
|
|
346
|
+
colors: {
|
|
347
|
+
primary: "#FF0000",
|
|
348
|
+
secondary: "#FFFF00",
|
|
349
|
+
muted: "#AA6600",
|
|
350
|
+
text: "#FFFF00",
|
|
351
|
+
userInput: "#FF0000",
|
|
352
|
+
response: "#FFFF00",
|
|
353
|
+
tool: "#FF6600",
|
|
354
|
+
toolResult: "#AA6600",
|
|
355
|
+
error: "#FF0000",
|
|
356
|
+
success: "#00FF00",
|
|
357
|
+
warning: "#FFFF00",
|
|
358
|
+
spinner: "#FF0000",
|
|
359
|
+
border: "#FF0000",
|
|
360
|
+
suggestion: "#FFFF00",
|
|
361
|
+
},
|
|
362
|
+
},
|
|
163
363
|
};
|
|
164
364
|
|
|
165
365
|
export const DEFAULT_THEME = "nord";
|