Update theme colors and enhance dark mode styling

- Changed the dark theme background color in `app.js` for improved aesthetics.
- Added new CSS variables for dark theme elements in `style.css`, enhancing visual consistency and user experience.
- Updated styling for various components in dark mode, including duty markers and calendar sticky behavior, to align with the new theme parameters.
This commit is contained in:
2026-02-18 15:06:35 +03:00
parent 1a0c49967e
commit d0d22c150a
2 changed files with 23 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
const RETRY_DELAY_MS = 800;
const RETRY_AFTER_ACCESS_DENIED_MS = 1200;
const THEME_BG = { dark: "#1a1b26", light: "#d5d6db" };
const THEME_BG = { dark: "#17212b", light: "#d5d6db" };
function getTheme() {
if (typeof window === "undefined") return "dark";