From 46c0df3ab866f0c92c81c036f7c63c047598ce47 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 15 Feb 2026 20:34:04 +0200 Subject: [PATCH] feat: add themed scrollbar styling for light and dark modes --- src/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.css b/src/index.css index dcda56f..7dd28a0 100644 --- a/src/index.css +++ b/src/index.css @@ -142,6 +142,11 @@ @layer base { * { @apply border-border outline-ring/50; + scrollbar-width: thin; + scrollbar-color: oklch(50% 0 0 / 20%) transparent; + } + .dark * { + scrollbar-color: oklch(80% 0 0 / 15%) transparent; } body { @apply bg-background text-foreground;