feat(ui): themed global scrollbars (no more white trough on the dark/blue theme) #74
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/themed-scrollbars"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The browser-default scrollbar is an opaque white trough that reads as a hard seam against the gray/blue theme, especially in dark mode.
Style scrollbars globally in the base layer to match the theme: transparent track, rounded gray thumb (gray-300 light / gray-600 dark, darkening to gray-400/500 on hover) with an inset padding-box border so it reads as a soft pill rather than a hard bar. Covers both the WebKit
::-webkit-scrollbar*pseudo-elements and Firefoxscrollbar-width: thin+scrollbar-color. Reuses the existing.scrollbar-thinpalette; the.scrollbar-thin/.scrollbar-hideutilities still override per element.CSS-only - needs a Tailwind rebuild + a visual check (no Rust gate).