From 978119d36af62a1cc3722550e7b752b23c417820 Mon Sep 17 00:00:00 2001
From: Big Flubba <69104450+BigFlubba@users.noreply.github.com>
Date: Tue, 23 Sep 2025 15:58:13 -0500
Subject: [PATCH] Update README.md
---
 README.md | 49 ++++++++++++++++++++++---------------------------
 1 file changed, 22 insertions(+), 27 deletions(-)
diff --git a/README.md b/README.md
index ba41244..4946d87 100644
--- a/README.md
+++ b/README.md
@@ -1,39 +1,34 @@
 
 
-### **Modern CSS theme for Jellyfin with support for backdrops and custom accent colors**
+### **A modern CSS theme for Jellyfin, featuring backdrops and customizable accent colors. Enhanced for a more elegant appearance.**
 
 [Go to installation](#installation)
 
 ---
 
-### **Scyfin Base Theme**
-`@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');`
+### **Scyfin Elegance Theme**
+```css
+@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css'); /* Base theme */
+@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css'); /* Disable static left drawer */
 
-
-
-
-
-
-
-
+/* Elegance theme */
+: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);
+}
+```
+
+
+
+
 
-### Options (Add these below the base theme)
-- Disable static left drawer 
-    - `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');`
-- Themes:
-    - Seafoam
-        - `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-seafoam.css');`
-        - 
-    - Coral
-        - `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-coral.css');`
-        - 
-    - Snow
-        - `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-snow.css');`
-        - 
-    - OLED
-        - `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-oled.css');`
-        - 
-        - 
 
 ---