31 lines
551 B
CSS
31 lines
551 B
CSS
@import "tailwindcss";
|
|
|
|
@keyframes fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes scale-in {
|
|
from { opacity: 0; transform: scale(0.9); }
|
|
to { opacity: 1; transform: scale(1); }
|
|
}
|
|
|
|
.animate-fade-in { animation: fade-in 0.2s ease-out; }
|
|
.animate-scale-in { animation: scale-in 0.3s ease-out; }
|
|
|
|
:root {
|
|
--background: #020205;
|
|
--foreground: #ffffff;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
|