"vscode:/vscode.git/clone" did not exist on "7d159ca723b1601c69532f5eb95c9e0c33f189f3"
Commit 3c01932a authored by Danny Liu's avatar Danny Liu
Browse files

run prettier

parent a57586a2
......@@ -21,8 +21,7 @@
} else if (localStorage.theme && localStorage.theme === 'system') {
systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
document.documentElement.classList.add(systemTheme ? 'dark' : 'light');
}
else {
} else {
document.documentElement.classList.add('dark');
}
......
......@@ -27,7 +27,7 @@
let showAdvanced = false;
function applyTheme(theme: string) { // only apply visually
function applyTheme(theme: string) {
let themeToApply = theme;
if (theme === 'system') {
themeToApply = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
......@@ -45,7 +45,7 @@
document.documentElement.classList.add(e);
});
console.log(theme)
console.log(theme);
}
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"
bind:value={selectedTheme}
placeholder="Select a theme"
on:change="{() => handleThemeChange(selectedTheme)}"
on:change={() => handleThemeChange(selectedTheme)}
>
<option value="system">⚙️ {$i18n.t('System')}</option>
<option value="dark">🌑 {$i18n.t('Dark')}</option>
......
......@@ -24,7 +24,7 @@ window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e)
});
});
export function setTheme(theme){
export function setTheme(theme) {
rawThemeSetting.set(theme);
localStorage.setItem('theme', theme);
}
......
......@@ -18,7 +18,7 @@
let loaded = false;
onMount(async () => {
setTheme(localStorage.theme)
setTheme(localStorage.theme);
// Check Backend Status
const backendConfig = await getBackendConfig();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment