37 lines
708 B
CSS
37 lines
708 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--background: 0 0% 0%;
|
|
--foreground: 0 0% 100%;
|
|
--card: 0 0% 0%;
|
|
--card-foreground: 0 0% 100%;
|
|
--popover: 0 0% 0%;
|
|
--popover-foreground: 0 0% 100%;
|
|
--primary: 142 100% 65%;
|
|
--primary-foreground: 0 0% 0%;
|
|
--secondary: 0 0% 9%;
|
|
--secondary-foreground: 0 0% 100%;
|
|
--muted: 0 0% 9%;
|
|
--muted-foreground: 0 0% 63.9%;
|
|
--accent: 0 0% 9%;
|
|
--accent-foreground: 0 0% 100%;
|
|
--destructive: 0 84.2% 60.2%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
--border: 0 0% 20%;
|
|
--input: 0 0% 20%;
|
|
--ring: 142 100% 65%;
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|