From bfd1e7c19af6e1a66c0f90559af4b16c69902102 Mon Sep 17 00:00:00 2001 From: FullGreaM Date: Sun, 26 Apr 2026 22:26:41 +0300 Subject: [PATCH] fix light theme --- frontend/src/styles.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/styles.ts b/frontend/src/styles.ts index aa2c6ea..1eac064 100644 --- a/frontend/src/styles.ts +++ b/frontend/src/styles.ts @@ -22,13 +22,14 @@ export class DarkStyle extends SkeletonStyle { export class LightStyle extends SkeletonStyle { navbar(element: GefestElement): void { - // Nothing add. Bg is light by default, and text is dark by default, so we don't need to add any classes for the navbar in the light style. + //element.addClass("light-navbar"); } applyStyle(html: string, element?: GefestElement): string { if (!element) element = GefestElement.fromHTML(html); //element.addClass("light-mode"); + element.addClass("bg-light"); element.addClass("text-dark"); this.navbar(element); return element.build(true);