forked from open-webui/open-webui
main #2
4 changed files with 28 additions and 29 deletions
|
@ -21,8 +21,7 @@
|
||||||
} else if (localStorage.theme && localStorage.theme === 'system') {
|
} else if (localStorage.theme && localStorage.theme === 'system') {
|
||||||
systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
||||||
document.documentElement.classList.add(systemTheme ? 'dark' : 'light');
|
document.documentElement.classList.add(systemTheme ? 'dark' : 'light');
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
document.documentElement.classList.add('dark');
|
document.documentElement.classList.add('dark');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
let showAdvanced = false;
|
let showAdvanced = false;
|
||||||
|
|
||||||
function applyTheme(theme: string) { // only apply visually
|
function applyTheme(theme: string) {
|
||||||
let themeToApply = theme;
|
let themeToApply = theme;
|
||||||
if (theme === 'system') {
|
if (theme === 'system') {
|
||||||
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
document.documentElement.classList.add(e);
|
document.documentElement.classList.add(e);
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(theme)
|
console.log(theme);
|
||||||
}
|
}
|
||||||
|
|
||||||
const toggleNotification = async () => {
|
const toggleNotification = async () => {
|
||||||
|
@ -135,7 +135,7 @@
|
||||||
class=" dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
|
class=" dark:bg-gray-900 w-fit pr-8 rounded py-2 px-2 text-xs bg-transparent outline-none text-right"
|
||||||
bind:value={selectedTheme}
|
bind:value={selectedTheme}
|
||||||
placeholder="Select a theme"
|
placeholder="Select a theme"
|
||||||
on:change="{() => handleThemeChange(selectedTheme)}"
|
on:change={() => handleThemeChange(selectedTheme)}
|
||||||
>
|
>
|
||||||
<option value="system">⚙️ {$i18n.t('System')}</option>
|
<option value="system">⚙️ {$i18n.t('System')}</option>
|
||||||
<option value="dark">🌑 {$i18n.t('Dark')}</option>
|
<option value="dark">🌑 {$i18n.t('Dark')}</option>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
let loaded = false;
|
let loaded = false;
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
setTheme(localStorage.theme)
|
setTheme(localStorage.theme);
|
||||||
// Check Backend Status
|
// Check Backend Status
|
||||||
const backendConfig = await getBackendConfig();
|
const backendConfig = await getBackendConfig();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue