language files combined, settings fixed, "new" badge integrated

This commit is contained in:
2025-08-01 23:34:41 +02:00
parent b2968f203d
commit 80873877c1
44 changed files with 1319 additions and 358 deletions

View File

@@ -1,3 +1,23 @@
@import '@fortawesome/fontawesome-svg-core/styles.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Theme variables */
:root {
--color-background: #ffffff;
--color-text: #000000;
}
html.dark {
--color-background: #333333; /* Dark grey */
--color-text: #ffffff;
}
/* Apply theme to body */
body {
background-color: var(--color-background);
color: var(--color-text);
transition: background-color 0.3s ease, color 0.3s ease;
}