From b83a54328edb418d795ca3110e4ac394746cd06c Mon Sep 17 00:00:00 2001 From: Tristan Michael Date: Mon, 6 Apr 2026 17:28:29 -0700 Subject: [PATCH] Brighten dividers and submenu outlines Make the divider and submenu outline colors a brighter gold to improve contrast and visual clarity. Updated CSS variables --color-border-light and --color-border-dark from a dark brown (#2a2418) to a warmer gold-brown (#5c4d2e). This change enhances the UI by making separators and submenu outlines more visible and consistent with the app's gold text accents. --- apps/tauri/src/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/tauri/src/app.css b/apps/tauri/src/app.css index 0b71952..f7e5fb3 100644 --- a/apps/tauri/src/app.css +++ b/apps/tauri/src/app.css @@ -150,8 +150,8 @@ body { --color-text-dark: #d4bc72; --color-text-secondary-light: #a6905a; --color-text-secondary-dark: #a6905a; - --color-border-light: #2a2418; - --color-border-dark: #2a2418; + --color-border-light: #5c4d2e; + --color-border-dark: #5c4d2e; --color-danger: #ef4444; }