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).
This commit is contained in:
dealerweb
2026-06-03 20:12:51 +02:00
committed by Linus Rath
parent 60c7bd713e
commit 941fa15251
+1 -1
View File
@@ -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;