From efff38557006f322d5ed0f6b0be4b43f0058c1fd Mon Sep 17 00:00:00 2001 From: Caleb Braaten Date: Mon, 12 Jan 2026 19:23:53 -0800 Subject: [PATCH] Add default style for base css with no js --- src/frontend/styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/frontend/styles.css b/src/frontend/styles.css index 2486649..6026c13 100644 --- a/src/frontend/styles.css +++ b/src/frontend/styles.css @@ -1,3 +1,12 @@ +/* Default theme fallback for when JS is disabled */ +html { + --bg-primary: #eff1f5; + --bg-secondary: #e6e9f0; + --text-primary: #4c4f69; + --text-secondary: #6c6f85; + --border-color: #dce0e8; +} + /* Catppuccin Latte - Light theme */ html[data-theme="latte"] { --bg-primary: #eff1f5;