15 Commits

Author SHA1 Message Date
ecb6f1d2d4 Update theme fonts 2026-06-06 14:26:26 +00:00
7db5ecbd2e Update theme fonts 2026-06-06 14:26:26 +00:00
7f7da0288c Update theme fonts 2026-06-06 14:26:08 +00:00
96737d388e Update theme fonts 2026-06-06 14:26:08 +00:00
ebf8ffbdf1 Update theme fonts 2026-06-06 14:25:36 +00:00
718435fd16 Update theme fonts 2026-06-06 14:25:36 +00:00
fab9350b98 Update theme fonts 2026-06-06 14:25:34 +00:00
5eae5d2f76 Update theme fonts 2026-06-06 14:25:33 +00:00
a4081f94fc Update theme fonts 2026-06-06 14:25:23 +00:00
e845171cf5 Update theme fonts 2026-06-06 14:25:23 +00:00
af9ed7f3ee Update theme fonts 2026-06-06 14:25:06 +00:00
38a3d37020 Update theme fonts 2026-06-06 14:25:06 +00:00
c15d2f2dfb Update theme fonts 2026-06-06 14:25:00 +00:00
550ff4d9e5 Update theme fonts 2026-06-06 14:24:59 +00:00
8b9f96c63f Update theme colors 2026-06-06 14:24:48 +00:00
3 changed files with 30 additions and 14 deletions

View File

@@ -6,6 +6,13 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Mulish } from "next/font/google";
import { Archivo } from "next/font/google";
import { Raleway } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Lato } from "next/font/google";
@@ -40,8 +47,17 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -52,7 +68,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
{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-lato), 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-lato), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #ffffff;
--primary-cta: #f0e68c;
--primary-cta-text: #0a0a0a;
--secondary-cta: #333333;
--secondary-cta-text: #ffffff;
--accent: #f0e68c;
--background-accent: #b8860b;
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1c1c1c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #15479c;
--background-accent: #a8cce8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);