add: snow theme

This commit is contained in:
rasmusq
2025-12-19 22:34:23 +01:00
parent b848477729
commit bdfcdcc15b
16 changed files with 7275 additions and 38 deletions

View File

@@ -1,6 +1,6 @@
import { themeStore } from '$lib/stores/theme.svelte';
export type ThemePattern = 'waves' | 'geometric' | 'dots' | 'none';
export type ThemePattern = 'snow' | 'none';
export interface Theme {
name: string;
@@ -13,16 +13,8 @@ export const AVAILABLE_THEMES: Record<string, Theme> = {
pattern: 'none'
},
waves: {
name: 'Waves',
pattern: 'waves'
},
geometric: {
name: 'Geometric',
pattern: 'geometric'
},
dots: {
name: 'Dots',
pattern: 'dots'
name: 'Snow',
pattern: 'snow'
}
};