codemaxxing 0.1.13 → 0.1.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  export const THEMES = {
2
- neon: {
3
- name: "Neon",
4
- description: "Cyberpunk neon (default)",
2
+ "cyberpunk-neon": {
3
+ name: "Cyberpunk Neon",
4
+ description: "Electric cyan & magenta — Night City terminal",
5
5
  colors: {
6
6
  primary: "#00FFFF",
7
7
  secondary: "#FF00FF",
@@ -161,22 +161,22 @@ export const THEMES = {
161
161
  },
162
162
  "tokyo-night": {
163
163
  name: "Tokyo Night",
164
- description: "Neon-lit city vibes",
164
+ description: "Rain-soaked Shibuya — neon signs in the dark",
165
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",
166
+ primary: "#FF7AC6",
167
+ secondary: "#7DCFFF",
168
+ muted: "#3B4261",
169
+ text: "#A9B1D6",
170
+ userInput: "#FF9E64",
171
+ response: "#FF7AC6",
172
+ tool: "#7DCFFF",
173
+ toolResult: "#3B4261",
174
174
  error: "#F7768E",
175
- success: "#9ECE6A",
176
- warning: "#E0AF68",
177
- spinner: "#7AA2F7",
178
- border: "#7AA2F7",
179
- suggestion: "#BB9AF7",
175
+ success: "#73DACA",
176
+ warning: "#FF9E64",
177
+ spinner: "#FF7AC6",
178
+ border: "#FF7AC6",
179
+ suggestion: "#7DCFFF",
180
180
  },
181
181
  },
182
182
  "one-dark": {
@@ -219,46 +219,6 @@ export const THEMES = {
219
219
  suggestion: "#C4A7E7",
220
220
  },
221
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
222
  synthwave: {
263
223
  name: "Synthwave",
264
224
  description: "Retro 80s sunset — outrun aesthetics",
@@ -299,26 +259,6 @@ export const THEMES = {
299
259
  suggestion: "#CC2936",
300
260
  },
301
261
  },
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
262
  "hot-dog": {
323
263
  name: "Hot Dog",
324
264
  description: "Cursed ketchup & mustard — you asked for it",
@@ -339,6 +279,26 @@ export const THEMES = {
339
279
  suggestion: "#FFFF00",
340
280
  },
341
281
  },
282
+ acid: {
283
+ name: "Acid",
284
+ description: "Every color at once — sensory overload",
285
+ colors: {
286
+ primary: "#FF00FF",
287
+ secondary: "#00FF88",
288
+ muted: "#FF6B00",
289
+ text: "#FFFF00",
290
+ userInput: "#00FFFF",
291
+ response: "#FF3399",
292
+ tool: "#33FF00",
293
+ toolResult: "#FF6B00",
294
+ error: "#FF0044",
295
+ success: "#00FF66",
296
+ warning: "#FFD700",
297
+ spinner: "#BF00FF",
298
+ border: "#FF00AA",
299
+ suggestion: "#00FFCC",
300
+ },
301
+ },
342
302
  };
343
303
  export const DEFAULT_THEME = "nord";
344
304
  export function getTheme(name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemaxxing",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Open-source terminal coding agent. Connect any LLM. Max your code.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/themes.ts CHANGED
@@ -20,9 +20,9 @@ export interface Theme {
20
20
  }
21
21
 
22
22
  export const THEMES: Record<string, Theme> = {
23
- neon: {
24
- name: "Neon",
25
- description: "Cyberpunk neon (default)",
23
+ "cyberpunk-neon": {
24
+ name: "Cyberpunk Neon",
25
+ description: "Electric cyan & magenta — Night City terminal",
26
26
  colors: {
27
27
  primary: "#00FFFF",
28
28
  secondary: "#FF00FF",
@@ -182,22 +182,22 @@ export const THEMES: Record<string, Theme> = {
182
182
  },
183
183
  "tokyo-night": {
184
184
  name: "Tokyo Night",
185
- description: "Neon-lit city vibes",
185
+ description: "Rain-soaked Shibuya — neon signs in the dark",
186
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",
187
+ primary: "#FF7AC6",
188
+ secondary: "#7DCFFF",
189
+ muted: "#3B4261",
190
+ text: "#A9B1D6",
191
+ userInput: "#FF9E64",
192
+ response: "#FF7AC6",
193
+ tool: "#7DCFFF",
194
+ toolResult: "#3B4261",
195
195
  error: "#F7768E",
196
- success: "#9ECE6A",
197
- warning: "#E0AF68",
198
- spinner: "#7AA2F7",
199
- border: "#7AA2F7",
200
- suggestion: "#BB9AF7",
196
+ success: "#73DACA",
197
+ warning: "#FF9E64",
198
+ spinner: "#FF7AC6",
199
+ border: "#FF7AC6",
200
+ suggestion: "#7DCFFF",
201
201
  },
202
202
  },
203
203
  "one-dark": {
@@ -240,46 +240,7 @@ export const THEMES: Record<string, Theme> = {
240
240
  suggestion: "#C4A7E7",
241
241
  },
242
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
- },
243
+
283
244
  synthwave: {
284
245
  name: "Synthwave",
285
246
  description: "Retro 80s sunset — outrun aesthetics",
@@ -320,26 +281,7 @@ export const THEMES: Record<string, Theme> = {
320
281
  suggestion: "#CC2936",
321
282
  },
322
283
  },
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
- },
284
+
343
285
  "hot-dog": {
344
286
  name: "Hot Dog",
345
287
  description: "Cursed ketchup & mustard — you asked for it",
@@ -360,6 +302,26 @@ export const THEMES: Record<string, Theme> = {
360
302
  suggestion: "#FFFF00",
361
303
  },
362
304
  },
305
+ acid: {
306
+ name: "Acid",
307
+ description: "Every color at once — sensory overload",
308
+ colors: {
309
+ primary: "#FF00FF",
310
+ secondary: "#00FF88",
311
+ muted: "#FF6B00",
312
+ text: "#FFFF00",
313
+ userInput: "#00FFFF",
314
+ response: "#FF3399",
315
+ tool: "#33FF00",
316
+ toolResult: "#FF6B00",
317
+ error: "#FF0044",
318
+ success: "#00FF66",
319
+ warning: "#FFD700",
320
+ spinner: "#BF00FF",
321
+ border: "#FF00AA",
322
+ suggestion: "#00FFCC",
323
+ },
324
+ },
363
325
  };
364
326
 
365
327
  export const DEFAULT_THEME = "nord";