60 lines
1.1 KiB
CSS
60 lines
1.1 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 0%;
|
|
--foreground: 0 0% 100%;
|
|
--card: 0 0% 5%;
|
|
--card-foreground: 0 0% 95%;
|
|
--popover: 0 0% 5%;
|
|
--popover-foreground: 0 0% 95%;
|
|
--primary: 217 91% 60%;
|
|
--primary-foreground: 0 0% 100%;
|
|
--secondary: 0 0% 15%;
|
|
--secondary-foreground: 0 0% 95%;
|
|
--muted: 0 0% 15%;
|
|
--muted-foreground: 0 0% 60%;
|
|
--accent: 0 0% 15%;
|
|
--accent-foreground: 0 0% 95%;
|
|
--destructive: 0 84% 60%;
|
|
--destructive-foreground: 0 0% 100%;
|
|
--border: 0 0% 20%;
|
|
--input: 0 0% 20%;
|
|
--ring: 217 91% 60%;
|
|
--radius: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
/* Custom scrollbar for dark theme */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #111111;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #333333;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555555;
|
|
}
|