12 Commits

Author SHA1 Message Date
1d3328007e Merge version_8 into main
Merge version_8 into main
2026-05-09 16:23:19 +00:00
99ef428fee Update theme fonts 2026-05-09 16:23:16 +00:00
e7fed90ddf Update theme fonts 2026-05-09 16:23:16 +00:00
e89a2b2af2 Merge version_8 into main
Merge version_8 into main
2026-05-09 16:22:59 +00:00
4d25491228 Update theme fonts 2026-05-09 16:22:56 +00:00
12ac3383b9 Update theme fonts 2026-05-09 16:22:55 +00:00
aa06dc6080 Merge version_8 into main
Merge version_8 into main
2026-05-09 16:22:44 +00:00
1b1a53bd06 Update theme colors 2026-05-09 16:22:41 +00:00
bb3d0db926 Merge version_7 into main
Merge version_7 into main
2026-05-09 16:22:36 +00:00
d2102bffb2 Merge version_6 into main
Merge version_6 into main
2026-05-09 16:22:21 +00:00
c092e019c3 Merge version_5 into main
Merge version_5 into main
2026-05-09 16:22:09 +00:00
e1588428fc Merge version_4 into main
Merge version_4 into main
2026-05-09 16:19:32 +00:00
3 changed files with 18 additions and 14 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -21,8 +23,10 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
@@ -34,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-public-sans), sans-serif;
font-family: var(--font-raleway), 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-raleway), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fafffb;
--card: #f7fffa;
--foreground: #001a0a;
--primary-cta: #0a7039;
--primary-cta-text: #fafffb;
--secondary-cta: #ffffff;
--secondary-cta-text: #001a0a;
--accent: #a8d9be;
--background-accent: #6bbf8e;
--background: #fffefe;
--card: #f6f7f4;
--foreground: #080908;
--primary-cta: #0e3a29;
--primary-cta-text: #fffefe;
--secondary-cta: #e7eecd;
--secondary-cta-text: #080908;
--accent: #35c18b;
--background-accent: #ecebe4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);