From 613906cd0cb37ff59b0286c74c9632731ff6b371 Mon Sep 17 00:00:00 2001 From: puttaalu Date: Thu, 2 Jul 2026 11:38:56 +0200 Subject: [PATCH] Colour the profile name and handle with Gruvbox green and blue --- static/style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index 2aba8b8..c599f54 100644 --- a/static/style.css +++ b/static/style.css @@ -7,7 +7,9 @@ --fg2: #d5c4a1; --fg3: #bdae93; --fg4: #a89984; - --aqua: #8ec07c; + --aqua: #8ec07c; + --green: #98971a; + --blue: #458588; --line: #3c3836; --serif: 'Crimson Pro', Georgia, serif; --mj: 'Manjari', sans-serif; @@ -72,13 +74,13 @@ body { font-family: var(--serif); font-size: 26px; font-weight: 700; - color: var(--fg); + color: var(--green); margin-bottom: 3px; } .handle { font-size: 12px; - color: var(--fg4); + color: var(--blue); font-family: monospace; margin-bottom: 10px; letter-spacing: 0.02em;