4 Commits

Author SHA1 Message Date
3fd62bbc5d Update theme fonts 2026-04-14 09:18:51 +00:00
43a477face Update theme fonts 2026-04-14 09:18:51 +00:00
2ddf6d8306 Update theme colors 2026-04-14 09:18:34 +00:00
8fcbf3fd50 Update theme colors 2026-04-14 09:17:41 +00:00
3 changed files with 16 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google"; import { Montserrat } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -21,8 +22,9 @@ export const metadata: Metadata = {
}, },
}; };
const montserrat = Montserrat({
variable: "--font-montserrat", const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -34,7 +36,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}> <body className={`${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f4ef; --background: #fafffb;
--card: #dad6cd; --card: #f7fffa;
--foreground: #2a2928; --foreground: #001a0a;
--primary-cta: #2a2928; --primary-cta: #0a7039;
--primary-cta-text: #f5f4ef; --primary-cta-text: #fafffb;
--secondary-cta: #ecebea; --secondary-cta: #ffffff;
--secondary-cta-text: #2a2928; --secondary-cta-text: #001a0a;
--accent: #ffffff; --accent: #a8d9be;
--background-accent: #c6b180; --background-accent: #6bbf8e;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);