11 Commits

Author SHA1 Message Date
ba961abdd1 Update theme fonts 2026-04-20 11:47:49 +00:00
605b5707a8 Update theme fonts 2026-04-20 11:47:48 +00:00
a208974b40 Update theme fonts 2026-04-20 11:47:40 +00:00
bdf4c7cfbe Update theme fonts 2026-04-20 11:47:40 +00:00
64fe3891b2 Update theme fonts 2026-04-20 11:47:26 +00:00
2176c0c5c0 Update theme fonts 2026-04-20 11:47:26 +00:00
87389e825c Update theme colors 2026-04-20 11:46:56 +00:00
14908f0769 Update theme colors 2026-04-20 11:46:52 +00:00
cb29c5d080 Update theme colors 2026-04-20 11:46:48 +00:00
e19fb052d0 Update theme colors 2026-04-20 11:46:44 +00:00
61b0c7e7d4 Update theme colors 2026-04-20 11:46:40 +00:00
3 changed files with 20 additions and 14 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
@@ -19,8 +22,11 @@ export const metadata: Metadata = {
},
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
@@ -32,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4f0;
--card: #ffffff;
--foreground: #1a1a1a;
--primary-cta: #2c2c2c;
--primary-cta-text: #f5f4f0;
--secondary-cta: #f5f4f0;
--secondary-cta-text: #1a1a1a;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);