asi-calculator/styles/_variables.css
Matthias Kretschmann ef42f24ab5
add new ASI logo
* add throughout UI as token logo
* add all favicon files, social image
2024-06-10 14:54:58 +01:00

32 lines
742 B
CSS

:root {
--max-width: 40rem;
--border-radius: 0.3rem;
--foreground-rgb: 20, 20, 20;
--foreground-rgb-highlight: 0, 0, 0;
--background-rgb: 255, 255, 255;
--background-gradient: radial-gradient(
circle at 30% 0%,
rgb(216, 225, 242) 0%,
rgb(176, 187, 240) 30%,
rgb(255, 255, 255) 100%
);
--text-light: rgba(var(--foreground-rgb), 0.7);
--text-dimmed: rgba(var(--foreground-rgb), 0.5);
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 220, 220, 220;
--foreground-rgb-highlight: 255, 255, 255;
--background-rgb: 0, 0, 0;
--background-gradient: radial-gradient(
circle at 30% 0%,
rgb(27, 40, 62) 0%,
rgb(15, 18, 33) 30%,
rgb(0, 0, 0) 100%
);
}
}