9 Commits

Author SHA1 Message Date
770b847829 Update theme fonts 2026-05-14 21:24:30 +00:00
5272db0950 Update theme fonts 2026-05-14 21:24:29 +00:00
29beaf814d Update theme fonts 2026-05-14 21:24:26 +00:00
791991301d Update theme fonts 2026-05-14 21:24:26 +00:00
a492ee67c6 Update theme colors 2026-05-14 21:24:07 +00:00
43c247ec89 Update theme colors 2026-05-14 21:23:45 +00:00
571be59829 Update theme colors 2026-05-14 21:23:41 +00:00
92a73964e9 Update theme colors 2026-05-14 21:23:29 +00:00
c7b7d747c3 Update theme colors 2026-05-14 21:23:21 +00:00
3 changed files with 23 additions and 13 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 { Public_Sans } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -19,7 +20,16 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], });
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -29,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.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-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-inter), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #f9f9f9;
--foreground: #ffffff;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #b5b5b5;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background: #efebe5;
--card: #f7f2ea;
--foreground: #000000;
--primary-cta: #000000;
--primary-cta-text: #efebe5;
--secondary-cta: #ffffff;
--secondary-cta-text: #000000;
--accent: #ffffff;
--background-accent: #e1b875;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);