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,4 +1,9 @@
@import "light-mode.less";
@import "dark-mode.less";
@background-image: var(--background-image);
@color: var(--color);
body {
background-image: @background-image;
background-size: 100vw 100vh;