From b372552294b75273450bc159355443bdbe4aba16 Mon Sep 17 00:00:00 2001 From: Chris Zerafa Date: Tue, 14 Jul 2026 22:25:42 -0400 Subject: [PATCH] style(theme): introduce navy and antique gold palette --- css/voyager.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/css/voyager.css b/css/voyager.css index 2c1189c..0a5f4e2 100644 --- a/css/voyager.css +++ b/css/voyager.css @@ -1,15 +1,15 @@ :root { color-scheme: dark; - --bg: #090d14; - --sidebar: #0d131d; - --panel: #131b27; - --panel-hover: #192434; + --bg: #07111f; + --sidebar: #0a1728; + --panel: #10233a; + --panel-hover: #152c47; --text: #f4f6f8; - --muted: #98a5b5; - --line: #263244; - --accent: #67d7c4; + --muted: #9ba9ba; + --line: #263b55; + --accent: #c79a3b; --online: #45d483; - --warning: #e3b653; + --warning: #cfa343; --offline: #ff6b6b; }