From 9c1009003f6e259b944f52d3f746c09bcd9d7900 Mon Sep 17 00:00:00 2001 From: Big Flubba <69104450+BigFlubba@users.noreply.github.com> Date: Tue, 23 Sep 2025 16:12:57 -0500 Subject: [PATCH] Create theme-elegance.css Changes the colors for a more OLED feel, increases the backdrop brightness, & adds blur. --- CSS/theme-elegance.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CSS/theme-elegance.css diff --git a/CSS/theme-elegance.css b/CSS/theme-elegance.css new file mode 100644 index 0000000..eb22c22 --- /dev/null +++ b/CSS/theme-elegance.css @@ -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); +}