codemaxxing 0.1.2 → 0.1.3

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.d.ts CHANGED
@@ -19,6 +19,6 @@ export interface Theme {
19
19
  };
20
20
  }
21
21
  export declare const THEMES: Record<string, Theme>;
22
- export declare const DEFAULT_THEME = "neon";
22
+ export declare const DEFAULT_THEME = "nord";
23
23
  export declare function getTheme(name: string): Theme;
24
24
  export declare function listThemes(): string[];
package/dist/themes.js CHANGED
@@ -140,7 +140,7 @@ export const THEMES = {
140
140
  },
141
141
  },
142
142
  };
143
- export const DEFAULT_THEME = "neon";
143
+ export const DEFAULT_THEME = "nord";
144
144
  export function getTheme(name) {
145
145
  return THEMES[name] ?? THEMES[DEFAULT_THEME];
146
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemaxxing",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
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
@@ -162,7 +162,7 @@ export const THEMES: Record<string, Theme> = {
162
162
  },
163
163
  };
164
164
 
165
- export const DEFAULT_THEME = "neon";
165
+ export const DEFAULT_THEME = "nord";
166
166
 
167
167
  export function getTheme(name: string): Theme {
168
168
  return THEMES[name] ?? THEMES[DEFAULT_THEME];