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"] {