useBaseTheme
- Base theme configuration
The base theme is the root theme of the application which all descendant theme layers is based on. Well... almost all.
The useBaseTheme
composable allows you to change your theme whenever you need to - also modifying all descendant layers!
vue
<script setup lang="ts">
import { themes, useBaseTheme } from 'artivue'
const {
// A computed ref containing the current theme config
theme,
// A computed ref with the full generated theme config
generatedTheme,
// A computed ref which tells if the current theme is dark or not
isDark,
// A function to set a new base theme.
setBaseTheme,
} = useBaseTheme()
function switchTheme() {
setBaseTheme(isDark.value ? themes.light : themes.dark)
}
</script>
Type reference
typescript
function useBaseTheme(): {
theme: ComputedRef<Theme>
setBaseTheme: (theme: MaybeRef<Theme>) => void
isDark: ComputedRef<boolean>
generatedTheme: ComputedRef<GeneratedTheme>
}