seal.devcomp.xyz/styles/globals.css

39 lines
676 B
CSS
Raw Normal View History

2023-07-30 11:27:42 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
--accent: #c2a4d6;
}
@keyframes pulsate {
0% {
background-color: black;
color: white
}
50% {
background-color: white;
color: black
}
100% {
background-color: black;
color: white
}
}
::selection {
background: rgb(var(--accent));
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(to center,
transparent,
rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
animation: pulsate 10s ease-in-out infinite;
2024-02-05 16:54:00 +00:00
}