11 Commits

Author SHA1 Message Date
cff5db6200 Update theme fonts 2026-06-10 11:30:16 +00:00
a40b8c348f Update theme fonts 2026-06-10 11:30:16 +00:00
01e6b1bc95 Update theme fonts 2026-06-10 11:30:08 +00:00
418034e370 Update theme fonts 2026-06-10 11:30:08 +00:00
3a54568ae8 Update theme fonts 2026-06-10 11:30:02 +00:00
a101f9e4b3 Update theme fonts 2026-06-10 11:30:01 +00:00
4bc536647d Update theme fonts 2026-06-10 11:30:00 +00:00
c3cade964c Update theme fonts 2026-06-10 11:30:00 +00:00
c3ddb6990a Update theme colors 2026-06-10 11:29:45 +00:00
600d62c8ca Update theme colors 2026-06-10 11:29:37 +00:00
087099424b Update theme colors 2026-06-10 11:29:35 +00:00
3 changed files with 24 additions and 13 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 { Open_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -41,8 +43,17 @@ export const metadata: Metadata = {
},
};
const openSans = Open_Sans({
variable: "--font-open-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -54,7 +65,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${libreBaskerville.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-open-sans), 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-open-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

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