Initial commit

This commit is contained in:
ponzischeme89
2026-01-17 21:49:22 +13:00
commit 3ad3d9bfe0
118 changed files with 18586 additions and 0 deletions
@@ -0,0 +1,28 @@
<script>
import { currentTheme, themes } from '../lib/themeStore.js'
import { Combobox } from '../lib/components/ui/combobox'
import { Palette } from 'lucide-svelte'
export let className = ''
const themeItems = Object.entries(themes).map(([value, theme]) => ({
value,
label: theme.name
}))
function handleThemeChange(event) {
currentTheme.setTheme(event.detail.value)
}
</script>
<Combobox
items={themeItems}
value={$currentTheme}
placeholder="Appearance"
className={className}
on:change={handleThemeChange}
>
<svelte:fragment slot="icon">
<Palette class="h-3.5 w-3.5 text-text-tertiary" />
</svelte:fragment>
</Combobox>