diff --git a/web/src/elements/Base.ts b/web/src/elements/Base.ts index 51f9849a15..1d5618fd86 100644 --- a/web/src/elements/Base.ts +++ b/web/src/elements/Base.ts @@ -123,6 +123,9 @@ export class AKElement extends LitElement { applyUITheme(nextStyleRoot, UiThemeEnum.Dark, this.#customCSSStyleSheet); this.activeTheme = UiThemeEnum.Dark; + } else if (this.preferredColorScheme === "light") { + applyUITheme(nextStyleRoot, UiThemeEnum.Light, this.#customCSSStyleSheet); + this.activeTheme = UiThemeEnum.Light; } else if (this.preferredColorScheme === "auto") { createUIThemeEffect( (nextUITheme) => {