From 5756e19ceb9c490883c4ed071a689c88c0a4511a Mon Sep 17 00:00:00 2001 From: Tristan Michael Date: Mon, 6 Apr 2026 17:29:49 -0700 Subject: [PATCH] Desaturate onyx theme gold tones Tweak several onyx theme color variables to slightly desaturate the gold accents so the UI appears less saturated and more balanced. Update text, option, and FAB colors, hover/background and border RGBA values, and add a new thicker onyx-border utility for a prominent gold window border. --- apps/tauri/src/app.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/apps/tauri/src/app.css b/apps/tauri/src/app.css index f7e5fb3..55bf4f3 100644 --- a/apps/tauri/src/app.css +++ b/apps/tauri/src/app.css @@ -146,8 +146,8 @@ body { --color-surface-dark: #141414; --color-card-light: #1e1e1e; --color-card-dark: #1e1e1e; - --color-text-light: #d4bc72; - --color-text-dark: #d4bc72; + --color-text-light: #d1bf82; + --color-text-dark: #d1bf82; --color-text-secondary-light: #a6905a; --color-text-secondary-dark: #a6905a; --color-border-light: #5c4d2e; @@ -163,7 +163,7 @@ body { } [data-theme="onyx"] select option { background-color: #141414; - color: #d4bc72; + color: #d1bf82; } /* Dark text on primary buttons/FAB */ @@ -173,7 +173,7 @@ body { /* FAB: match text gold instead of cream primary */ [data-theme="onyx"] .rounded-full.bg-primary.shadow-lg { - background-color: #d4bc72; + background-color: #d1bf82; } /* Checkbox borders: gold instead of gray */ @@ -186,12 +186,17 @@ body { [data-theme="onyx"] .dark\:hover\:bg-white\/10:hover, [data-theme="onyx"] .dark\:hover\:bg-white\/5:hover, [data-theme="onyx"] .dark\:bg-white\/10 { - background-color: rgb(212 188 114 / 0.1); + background-color: rgb(209 191 130 / 0.1); } /* Linux window border */ [data-theme="onyx"] .linux-window-border { - border-color: rgba(212, 188, 114, 0.15); + border-color: rgba(209, 191, 130, 0.15); +} + +/* Thick gold window border */ +[data-theme="onyx"] .onyx-border { + border: 3px solid #a6905a; } [data-theme="solarized"] {