15 Commits

Author SHA1 Message Date
d4c1c1432a Update theme colors 2026-04-23 07:46:42 +00:00
cf5d91b376 Update theme colors 2026-04-23 07:46:36 +00:00
a9fd53ee7e Update theme colors 2026-04-23 07:45:58 +00:00
3d16564915 Update theme fonts 2026-04-23 07:45:36 +00:00
51b4bd8679 Update theme fonts 2026-04-23 07:45:36 +00:00
678b9f7a29 Update theme colors 2026-04-23 07:44:28 +00:00
1ba1a55a73 Update theme colors 2026-04-23 07:44:07 +00:00
33da05d6ba Update theme colors 2026-04-23 07:43:28 +00:00
505694bc67 Update theme colors 2026-04-23 07:43:02 +00:00
bbc511083b Update theme colors 2026-04-23 07:42:32 +00:00
1eaa74033f Update theme colors 2026-04-23 07:42:05 +00:00
b718e6748a Update theme colors 2026-04-23 07:41:34 +00:00
eb186a40d7 Update theme colors 2026-04-23 07:41:16 +00:00
8314d159dd Update theme colors 2026-04-23 07:41:11 +00:00
05dc6b9861 Update theme colors 2026-04-23 07:40:40 +00:00
3 changed files with 20 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,8 +21,13 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--background: #000802;
--card: #0b1a0b;
--foreground: #e6ffe6;
--primary-cta: #80da9b;
--primary-cta-text: #000802;
--secondary-cta: #07170b;
--secondary-cta-text: #e6ffe6;
--accent: #38714a;
--background-accent: #2c6541;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);