7 Commits

Author SHA1 Message Date
766779a8d5 Merge version_4 into main
Merge version_4 into main
2026-04-17 18:58:52 +00:00
58b638e26f Update theme fonts 2026-04-17 18:58:49 +00:00
1f86316f72 Update theme fonts 2026-04-17 18:58:48 +00:00
77872c54a4 Merge version_4 into main
Merge version_4 into main
2026-04-17 18:55:49 +00:00
bfc6e51e63 Update theme colors 2026-04-17 18:55:46 +00:00
d99a238239 Merge version_3 into main
Merge version_3 into main
2026-04-17 18:55:43 +00:00
607b316f4d Merge version_2 into main
Merge version_2 into main
2026-04-17 18:41:29 +00:00
3 changed files with 10 additions and 7 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 { DM_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -25,9 +26,11 @@ export const metadata: Metadata = {
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -42,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -13,12 +13,12 @@
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1f3251;
--primary-cta: #341f51;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #15479c;
--background-accent: #a8cce8;
--accent: #6139e6;
--background-accent: #b3a8e8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);