fix: resolve font configuration mismatch in CSS
Match CSS font references to actual layout fonts. Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
parent
fcfde15b0d
commit
a829ec97cd
|
|
@ -40,6 +40,7 @@
|
||||||
--font-inter: "Inter", sans-serif;
|
--font-inter: "Inter", sans-serif;
|
||||||
--font-playfair: "Playfair Display", serif;
|
--font-playfair: "Playfair Display", serif;
|
||||||
--font-geist-mono: "Geist Mono", monospace;
|
--font-geist-mono: "Geist Mono", monospace;
|
||||||
|
--font-geist-sans: "Geist Sans", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
|
|
@ -79,8 +80,8 @@
|
||||||
|
|
||||||
@theme inline {
|
@theme inline {
|
||||||
/* Updated font variables to use new stylish fonts */
|
/* Updated font variables to use new stylish fonts */
|
||||||
--font-sans: var(--font-inter);
|
--font-sans: var(--font-geist-sans);
|
||||||
--font-serif: var(--font-playfair);
|
--font-serif: var(--font-geist-sans);
|
||||||
--font-mono: var(--font-geist-mono);
|
--font-mono: var(--font-geist-mono);
|
||||||
--color-background: var(--background);
|
--color-background: var(--background);
|
||||||
--color-foreground: var(--foreground);
|
--color-foreground: var(--foreground);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue