9 Commits

Author SHA1 Message Date
b85abca9dd Merge version_7 into main
Merge version_7 into main
2026-05-01 17:47:48 +00:00
8e1980fc04 Update theme fonts 2026-05-01 17:47:42 +00:00
6440da6cc1 Update theme fonts 2026-05-01 17:47:42 +00:00
265b9dddef Merge version_7 into main
Merge version_7 into main
2026-05-01 17:47:22 +00:00
53125a3fff Update theme colors 2026-05-01 17:47:19 +00:00
90eb70110a Merge version_6 into main
Merge version_6 into main
2026-05-01 17:46:50 +00:00
b5573b2a1b Update theme colors 2026-05-01 17:46:47 +00:00
67da9e0754 Merge version_5 into main
Merge version_5 into main
2026-05-01 17:45:56 +00:00
c95297066b Merge version_5 into main
Merge version_5 into main
2026-05-01 17:45:32 +00:00
3 changed files with 21 additions and 15 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 { Lato } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,10 +22,15 @@ export const metadata: Metadata = {
},
};
const lato = Lato({
variable: "--font-lato",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -35,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.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-lato), 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-lato), sans-serif;
font-family: var(--font-libre-baskerville), 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: #f7f6f7;
--card: #ffffff;
--foreground: #250c0d;
--primary-cta: #b82b40;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #250c0d;
--accent: #b90941;
--background-accent: #e8a8b6;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);