anycoder-2e0e36d2 / styles /globals.css
M-Zeki's picture
Upload styles/globals.css with huggingface_hub
aa33286 verified
Raw
History Blame Contribute Delete
672 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 247, 250, 252;
--background-start-rgb: 10, 17, 40;
--background-end-rgb: 10, 17, 40;
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0A1128;
}
::-webkit-scrollbar-thumb {
background: #4A5568;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #00E5FF;
}