From ad85976dbb1dd6b1f22fc200d52a25cf149353f5 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Tue, 17 Feb 2026 10:58:35 +1100 Subject: [PATCH] Remove text gradients from hero h1 and card-count Replace gradient-clipped text with solid color (--color-primary) for a simpler, cleaner design. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- website/public/styles/global.css | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/website/public/styles/global.css b/website/public/styles/global.css index 3dd083a7..5a5d4a64 100644 --- a/website/public/styles/global.css +++ b/website/public/styles/global.css @@ -361,10 +361,7 @@ a:hover { font-size: 56px; font-weight: 800; letter-spacing: -0.02em; - background: var(--gradient-primary); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; + color: var(--color-primary); margin-bottom: 20px; position: relative; } @@ -535,10 +532,7 @@ a:hover { flex-shrink: 0; font-size: 28px; font-weight: 700; - background: var(--gradient-primary); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; + color: var(--color-primary); line-height: 1; min-width: 40px; text-align: right;