36 lines
757 B
CSS
36 lines
757 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--foreground-rgb: 200, 220, 255;
|
|
--background-start-rgb: 10, 14, 39;
|
|
--background-end-rgb: 5, 5, 8;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: linear-gradient(
|
|
to bottom,
|
|
rgb(var(--background-start-rgb)),
|
|
rgb(var(--background-end-rgb))
|
|
);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
@layer utilities {
|
|
.text-glow-cyan {
|
|
text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
|
|
}
|
|
|
|
.text-glow-green {
|
|
text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
|
|
}
|
|
|
|
.border-glow-cyan {
|
|
box-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, inset 0 0 5px #00ffff;
|
|
}
|
|
|
|
.border-glow-green {
|
|
box-shadow: 0 0 5px #00ff41, 0 0 10px #00ff41, inset 0 0 5px #00ff41;
|
|
}
|
|
}
|