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,4 @@
@background-image: url('/assets/images/img.png');
@color: black;
:root {
--background-image: url('/assets/images/img.png');
--color: black;
}