7 Commits

Author SHA1 Message Date
5294641992 Update theme fonts 2026-05-08 16:53:07 +00:00
370868ab41 Update theme fonts 2026-05-08 16:53:07 +00:00
35663df91f Update theme colors 2026-05-08 16:52:52 +00:00
8aac4ea715 Update theme colors 2026-05-08 16:52:23 +00:00
70a1fc796e Update theme fonts 2026-05-08 16:48:27 +00:00
9fc31b0bf0 Update theme fonts 2026-05-08 16:48:26 +00:00
7f80d3efd8 Update theme colors 2026-05-08 16:47:39 +00:00
3 changed files with 19 additions and 14 deletions

View File

@@ -7,6 +7,9 @@ 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 { Open_Sans } from "next/font/google"; import { Open_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -21,8 +24,10 @@ export const metadata: Metadata = {
}, },
}; };
const openSans = Open_Sans({
variable: "--font-open-sans",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -34,7 +39,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${openSans.variable} antialiased`}> <body className={`${montserrat.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-open-sans), sans-serif; font-family: var(--font-montserrat), 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-open-sans), sans-serif; font-family: var(--font-montserrat), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f4ef; --background: #ffffff;
--card: #dad6cd; --card: #f9f9f9;
--foreground: #2a2928; --foreground: #342065;
--primary-cta: #2a2928; --primary-cta: #F06724;
--primary-cta-text: #f5f4ef; --primary-cta-text: #ffffff;
--secondary-cta: #ecebea; --secondary-cta: #FFDF27;
--secondary-cta-text: #2a2928; --secondary-cta-text: #342065;
--accent: #ffffff; --accent: #D32B2B;
--background-accent: #c6b180; --background-accent: #F06724;
/* 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);