From 941fa15251e76b5e8865c921d920c333af5bdc88 Mon Sep 17 00:00:00 2001 From: dealerweb Date: Tue, 2 Jun 2026 22:40:20 +0200 Subject: [PATCH] Fix: dark-mode borders invisible (border token collided with secondary) In the dark theme --color-border was #262626, identical to --color-secondary/--color-muted. The global `* { border-color: var(--color-border) }` rule therefore rendered borders invisible on those surfaces - e.g. the folder sidebar's right border and the account header's bottom border vanished in dark mode. Set --color-border to rgba(128, 128, 128, 0.3) (the same neutral the navigation rail already uses inline) so borders stay visible and consistent across all dark surfaces (background, secondary, card, popover). --- app/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/globals.css b/app/globals.css index 55ef6a77..ce708b75 100644 --- a/app/globals.css +++ b/app/globals.css @@ -70,7 +70,7 @@ } .dark { - --color-border: #262626; + --color-border: rgba(128, 128, 128, 0.3); --color-input: #262626; --color-ring: #d4d4d4; --color-background: #0a0a0a;