Adjustable Glow

This commit is contained in:
2025-08-12 22:13:28 +10:00
parent 2e7e51b7eb
commit 7de6a98d8e
3 changed files with 36 additions and 6 deletions
@@ -25,7 +25,7 @@
/* Enhanced lyrics styling with glow effects */
[class*="_lyricsText"] > div > span[data-current="true"] {
text-shadow: 0 0 2px #fff, 0 0 20px #fff !important;
text-shadow: 0 0 var(--rl-glow-inner, 2px) #fff, 0 0 var(--rl-glow-outer, 20px) #fff !important;
padding-left: 20px;
transition-duration: 0.7s;
font-size: 55px;
@@ -44,7 +44,7 @@
}
[class*="_lyricsText"] > div > span:hover {
text-shadow: 0 0 2px lightgray, 0 0 20px lightgray !important;
text-shadow: 0 0 var(--rl-glow-inner, 2px) lightgray, 0 0 var(--rl-glow-outer, 20px) lightgray !important;
color: lightgray !important;
padding-left: 20px;
transition-duration: 0.7s;
@@ -52,7 +52,7 @@
/* Track title glow */
[data-test="now-playing-track-title"] {
text-shadow: 0 0 1px #fff, 0 0 30px #fff !important;
text-shadow: 0 0 1px #fff, 0 0 var(--rl-glow-outer, 30px) #fff !important;
}
/* Current line transitions */