Spaces:
Sleeping
Sleeping
File size: 294 Bytes
7aec436 |
1 2 3 4 5 6 7 8 9 10 11 |
<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>
|