s4s-packager / src /p4 /SelectTheme.svelte
soiz1's picture
Upload 225 files
7aec436 verified
<script>
import {theme} from './stores';
import {_} from '../locales';
</script>
<select bind:value={$theme}>
<option value="system">{$_('theme.system')}</option>
<option value="light">{$_('theme.light')}</option>
<option value="dark">{$_('theme.dark')}</option>
</select>