2022-12-27 23:03:50 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-28 01:06:54 +00:00
|
|
|
import type { ColorMode } from '~/types'
|
|
|
|
|
2022-12-29 12:26:08 +00:00
|
|
|
const colorMode = useColorMode()
|
2022-12-28 01:06:54 +00:00
|
|
|
|
|
|
|
function setColorMode(mode: ColorMode) {
|
2022-12-29 12:26:08 +00:00
|
|
|
colorMode.preference = mode
|
2022-12-27 23:03:50 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex="~ gap4" w-full>
|
|
|
|
<button
|
|
|
|
btn-text flex-1 flex="~ gap-1 center" p4 border="~ base rounded" bg-base
|
2022-12-29 19:27:11 +00:00
|
|
|
:tabindex="colorMode.value === 'dark' ? 0 : -1"
|
2022-12-29 12:26:08 +00:00
|
|
|
:class="colorMode.value === 'dark' ? 'pointer-events-none' : 'filter-saturate-0'"
|
2022-12-28 01:06:54 +00:00
|
|
|
@click="setColorMode('dark')"
|
2022-12-27 23:03:50 +00:00
|
|
|
>
|
|
|
|
<div i-ri:moon-line />
|
2022-12-29 19:27:11 +00:00
|
|
|
{{ $t('settings.interface.dark_mode') }}
|
2022-12-27 23:03:50 +00:00
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
btn-text flex-1 flex="~ gap-1 center" p4 border="~ base rounded" bg-base
|
2022-12-29 19:27:11 +00:00
|
|
|
:tabindex="colorMode.value === 'light' ? 0 : -1"
|
2022-12-29 12:26:08 +00:00
|
|
|
:class="colorMode.value === 'light' ? 'pointer-events-none' : 'filter-saturate-0'"
|
2022-12-28 01:06:54 +00:00
|
|
|
@click="setColorMode('light')"
|
2022-12-27 23:03:50 +00:00
|
|
|
>
|
|
|
|
<div i-ri:sun-line />
|
2022-12-29 19:27:11 +00:00
|
|
|
{{ $t('settings.interface.light_mode') }}
|
2022-12-27 23:03:50 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|