24 lines
455 B
CSS
24 lines
455 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--background: 10 10 10;
|
|
--foreground: 230 230 230;
|
|
--accent: 0 255 170;
|
|
--accent-foreground: 0 0 0;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground));
|
|
background: rgb(var(--background));
|
|
}
|
|
|
|
@layer utilities {
|
|
.neon-glow {
|
|
text-shadow: 0 0 5px rgb(var(--accent) / 0.5),
|
|
0 0 10px rgb(var(--accent) / 0.5),
|
|
0 0 15px rgb(var(--accent) / 0.5);
|
|
}
|
|
}
|