text changes

This commit is contained in:
madrilene 2025-01-10 15:12:36 +01:00
parent b0fdbf6160
commit 25aad3d41b
3 changed files with 8 additions and 2 deletions

View file

@ -10,6 +10,10 @@
{
"name": "Bold",
"value": 700
},
{
"name": "Extra Bold",
"value": 900
}
]
}

View file

@ -31,7 +31,7 @@ h1,
h2,
h3 {
font-family: var(--font-display);
font-weight: var(--font-bold);
font-weight: var(--font-extra-bold);
line-height: 1.2;
letter-spacing: var(--tracking-s);
}

View file

@ -7,9 +7,10 @@
--button-border-style: solid;
--button-border-color: color-mix(in oklab, var(--button-bg) 80%, var(--color-text));
--button-radius: var(--border-radius-small);
--button-font-weight: var(--font-bold);
--button-gap: var(--space-2xs);
--button-padding: var(--space-xs) var(--space-m);
--button-font-family: var(--font-body);
--button-font-weight: var(--font-regular);
--button-font-size: var(--size-step-0);
--button-text-transform: none;
@ -24,6 +25,7 @@
border-color: var(--button-border-color);
border-radius: var(--button-radius);
text-decoration: none;
font-family: var(--button-font-family);
font-weight: var(--button-font-weight);
font-size: var(--button-font-size);
line-height: var(--leading-flat);