Files
albert.lol-nextjs/src/app/globals.css
T
2024-12-20 20:38:44 +01:00

44 lines
670 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--dark-background: #282828;
--dark-primary: #323232;
--dark-secondary: #cecece;
--dark-text: #eeeeee;
--light-background: #eeeeee;
--light-primary: #dddddd;
--light-secondary: #5c5c5c;
--light-text: #222222;
}
@layer base {
html {
scrollbar-width: thin;
scrollbar-color: #8040ee transparent;
background-color: transparent;
}
.dark {
background-color: transparent;
}
}
@layer components {
::selection {
background-color: #8040ee;
color: #fff;
}
::-webkit-scrollbar {
width: 3px;
}
::-webkit-scrollbar-thumb {
background-color: #8040ee;
border-radius: 10px;
}
}