feat(ui): implement CSS variables for theme support

This commit is contained in:
2025-10-29 11:06:30 +01:00
parent 6c31fa0538
commit d41c32f57f
3 changed files with 15 additions and 4 deletions

View File

@@ -1,2 +1,6 @@
@background-image: url('/assets/images/background.png');
@color: white;
@media (prefers-color-scheme: dark) {
:root {
--background-image: url('/assets/images/background.png');
--color: white;
}
}