Compare commits

..

13 Commits

Author SHA1 Message Date
4d6985f397 Update theme colors 2026-04-25 21:32:57 +00:00
d5d2600e62 Update theme fonts 2026-04-25 21:31:50 +00:00
0e2db7b01b Update theme fonts 2026-04-25 21:31:49 +00:00
a87890815c Update theme fonts 2026-04-25 21:31:42 +00:00
31d9541633 Update theme fonts 2026-04-25 21:31:42 +00:00
0f2cb23bb3 Update theme fonts 2026-04-25 21:31:35 +00:00
143bc69d05 Update theme fonts 2026-04-25 21:31:35 +00:00
0a3c50f306 Update theme fonts 2026-04-25 21:31:20 +00:00
781dfb364a Update theme fonts 2026-04-25 21:31:19 +00:00
269a4da254 Update theme fonts 2026-04-25 21:31:18 +00:00
c81d811a5f Update theme fonts 2026-04-25 21:31:17 +00:00
ff759b8cfc Update theme colors 2026-04-25 21:31:00 +00:00
3efd4264c4 Update theme colors 2026-04-25 21:29:34 +00:00
3 changed files with 18 additions and 12 deletions

View File

@@ -6,6 +6,11 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Nunito } from "next/font/google";
import { Archivo } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -18,12 +23,13 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -35,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body className={`${openSans.variable} antialiased`}>
{children}
<script

View File

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

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;