5 Commits

Author SHA1 Message Date
9f6bdbd49e Update theme fonts 2026-04-27 19:06:21 +00:00
a795dfb1d8 Update theme fonts 2026-04-27 19:06:21 +00:00
de2250662d Update theme colors 2026-04-27 19:05:58 +00:00
4463f2e91b Update theme colors 2026-04-27 19:05:46 +00:00
ff8e0f08e4 Update theme colors 2026-04-27 19:05:29 +00:00
3 changed files with 10 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -24,13 +25,9 @@ export const metadata: Metadata = {
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
@@ -42,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-archivo), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-libre-baskerville), serif;
font-family: var(--font-archivo), sans-serif;
}

View File

@@ -13,12 +13,12 @@
--background: #888587;
--card: #564c4c;
--foreground: #ffffff;
--primary-cta: #d4af37;
--primary-cta-text: #e6b4b4;
--primary-cta: #5f5126;
--primary-cta-text: #000000;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
--accent: #b8860b;
--background-accent: #2a2410;
--background-accent: #3e3825;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);