UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

29 lines (28 loc) 890 B
export default function darkScrollbar(options?: { track: string; thumb: string; active: string; }): { scrollbarColor: string; '&::-webkit-scrollbar, & *::-webkit-scrollbar': { backgroundColor: string; }; '&::-webkit-scrollbar-thumb, & *::-webkit-scrollbar-thumb': { borderRadius: number; backgroundColor: string; minHeight: number; border: string; }; '&::-webkit-scrollbar-thumb:focus, & *::-webkit-scrollbar-thumb:focus': { backgroundColor: string; }; '&::-webkit-scrollbar-thumb:active, & *::-webkit-scrollbar-thumb:active': { backgroundColor: string; }; '&::-webkit-scrollbar-thumb:hover, & *::-webkit-scrollbar-thumb:hover': { backgroundColor: string; }; '&::-webkit-scrollbar-corner, & *::-webkit-scrollbar-corner': { backgroundColor: string; }; };