Remplacement des checkbox par des switch + création du thème

This commit is contained in:
2024-03-17 15:47:42 +01:00
parent 7e0687d3ca
commit 745532c1b8
3 changed files with 73 additions and 62 deletions

View File

@ -21,7 +21,7 @@
function toggleTheme() {
darkTheme.value = !darkTheme.value
theme.global.name.value = theme.global.current.value.dark ? 'light' : 'dark'
theme.global.name.value = theme.global.current.value.dark ? 'CustomThemeLight' : 'CustomThemeDark'
}
</script>