darkmode scrollbars ━━━━━━━━━━━━━━━━━━━ If you are designing a website in dark mode the scrollbars can be finicky to match the theme. Here is a pretty sane default that looks nice without being... Date: April 10, 2024 If you are designing a website in dark mode the scrollbars can be finicky to match the theme. Here is a pretty sane default that looks nice without being obnoxiously contrast to the rest of the site. ``` ``` Want a rounded scrollbar thumb? add these styles. ``` ::-webkit-scrollbar-thumb { border-radius: 0.25rem; border-radius: 9999px; } body::-webkit-scrollbar-thumb { border-radius: 0.25rem; border-radius: 9999px; } ``` This makes a very nice looking default darkmode scrollbar.