5 Commits

Author SHA1 Message Date
cb45a080e4 Update theme fonts 2026-04-11 18:28:39 +00:00
d14b43ffcd Update theme fonts 2026-04-11 18:28:38 +00:00
0aa2b11bc2 Update theme fonts 2026-04-11 18:28:30 +00:00
ee1864829a Update theme fonts 2026-04-11 18:28:29 +00:00
a8e42e6dc0 Update theme colors 2026-04-11 18:27:44 +00:00
3 changed files with 19 additions and 14 deletions

View File

@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google"; import { Nunito } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -19,9 +21,12 @@ export const metadata: Metadata = {
}, },
}; };
const nunito = Nunito({
variable: "--font-nunito",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -32,7 +37,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${nunito.variable} antialiased`}> <body className={`${poppins.variable} antialiased`}>
{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-nunito), sans-serif; font-family: var(--font-poppins), 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-nunito), sans-serif; font-family: var(--font-poppins), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f7f6f7; --background: #ffffff;
--card: #ffffff; --card: #f9f9f9;
--foreground: #25190c; --foreground: #000612e6;
--primary-cta: #ff6207; --primary-cta: #15479c;
--primary-cta-text: #f7f6f7; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #f9f9f9;
--secondary-cta-text: #25190c; --secondary-cta-text: #000612e6;
--accent: #ffce93; --accent: #e2e2e2;
--background-accent: #e8cfa8; --background-accent: #c4c4c4;
/* 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);