From 23cb66da181a7a2a72714c7e176c7652819befec Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 13 Apr 2026 11:07:42 +0000 Subject: [PATCH] Fix Spotlight light-mode title gradient selector and start color The selector `.card.card-theme-light .template-spotlight .main-repo-title` was wrong because `.template-spotlight` is a class on `.card` itself, not a descendant element. Fixed to `.card.card-theme-light.template-spotlight .main-repo-title` so the rule only applies when both classes are on the same element. Also changed the gradient start color from `#1f2328` to `#000000` so the Spotlight title in light mode fades from pure black to the theme color. https://claude.ai/code/session_01XJa3QY4PtJx1j4K5YEv5Yk --- assets/css/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/styles.css b/assets/css/styles.css index ae137bd..131ca9d 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -1437,8 +1437,8 @@ h1 span { color: var(--tc, #3fb950); } -.card.card-theme-light .template-spotlight .main-repo-title { - background: linear-gradient(135deg, #1f2328 0%, var(--tc, #58a6ff) 100%) !important; +.card.card-theme-light.template-spotlight .main-repo-title { + background: linear-gradient(135deg, #000000 0%, var(--tc, #58a6ff) 100%) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;