3 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
3 changed files with 8 additions and 10 deletions

View File

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

View File

@@ -18,7 +18,7 @@
--secondary-cta: #FFDF27; --secondary-cta: #FFDF27;
--secondary-cta-text: #342065; --secondary-cta-text: #342065;
--accent: #D32B2B; --accent: #D32B2B;
--background-accent: #FF7B05; --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);