6 Commits

Author SHA1 Message Date
6f857fe328 Update theme colors 2026-06-05 12:50:49 +00:00
c0ba937333 Update theme colors 2026-06-05 12:50:45 +00:00
ff8a01920d Update theme colors 2026-06-05 12:50:31 +00:00
52f77c4835 Update theme fonts 2026-06-05 12:50:11 +00:00
9243a9ad40 Update theme fonts 2026-06-05 12:50:10 +00:00
db067a8855 Update theme colors 2026-06-05 12:50:05 +00:00
3 changed files with 21 additions and 14 deletions

View File

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

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #F5F1EA;
--card: #D6C7B2;
--foreground: #3B2F2F;
--primary-cta: #C8A45D;
--primary-cta-text: #3B2F2F;
--secondary-cta: #3B2F2F;
--secondary-cta-text: #F5F1EA;
--accent: #C8A45D;
--background-accent: #D6C7B2;
--background: #f7f6f7;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0798ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #0c1325;
--accent: #93c7ff;
--background-accent: #a8cde8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);