Add font variables

This commit is contained in:
daudix
2024-02-12 19:54:32 +03:00
parent 184d7bd456
commit 7f0be7130b
4 changed files with 15 additions and 293 deletions

View File

@ -19,8 +19,13 @@
// VARIABLES
--active: 0.9;
--bg-color-l: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), var(--primary-color);
--bg-color-d: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), var(--primary-color);
--bg-color-l: linear-gradient(
rgba(255, 255, 255, 0.8),
rgba(255, 255, 255, 0.8)
),
var(--primary-color);
--bg-color-d: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
var(--primary-color);
--content-width: 720px;
--drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07))
drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
@ -34,6 +39,11 @@
--transition-long: 800ms;
--transition-longer: 400ms;
--transition: 200ms;
--font-system: system-ui, sans-serif;
--font-monospace: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo,
Consolas, "DejaVu Sans Mono", monospace;
--font-serif: Rockwell, "Rockwell Nova", "Roboto Slab", "DejaVu Serif",
"Sitka Small", serif;
}
@media (prefers-color-scheme: dark) {