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 +1 -1
- package/dist/themes.js +1 -1
- package/package.json +1 -1
- package/src/themes.ts +1 -1
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 = "
|
|
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
package/package.json
CHANGED
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 = "
|
|
165
|
+
export const DEFAULT_THEME = "nord";
|
|
166
166
|
|
|
167
167
|
export function getTheme(name: string): Theme {
|
|
168
168
|
return THEMES[name] ?? THEMES[DEFAULT_THEME];
|