Compare commits

...

2 Commits

Author SHA1 Message Date
Big Flubba
618bc69383
Merge 9c1009003f into b5f2fee628 2025-10-23 04:14:13 +01:00
Big Flubba
9c1009003f
Create theme-elegance.css
Changes the colors for a more OLED feel, increases the backdrop brightness, & adds blur.
2025-09-23 16:12:57 -05:00

12
CSS/theme-elegance.css Normal file
View File

@ -0,0 +1,12 @@
/* Variables */
:root {
--primary-background-color: rgba(0,0,0,0.9);
--secondary-background-color: rgba(2,2,2,0.9);
--primary-background-transparent: rgba(2,2,2,0.2);
}
/* Increase backdrop image brightness and add some blur */
.backgroundContainer.withBackdrop {
background-color: rgba(0,0,0,0.65);
backdrop-filter: blur(6px);
}