8 Commits

Author SHA1 Message Date
8a2914a98b Merge version_2 into main
Merge version_2 into main
2026-06-11 00:56:20 +00:00
50166c0e66 Update theme fonts 2026-06-11 00:56:14 +00:00
6b06672958 Update theme fonts 2026-06-11 00:56:13 +00:00
d9233a9f11 Merge version_2 into main
Merge version_2 into main
2026-06-11 00:55:35 +00:00
2ab79397ef Update theme fonts 2026-06-11 00:55:32 +00:00
5f24af9b34 Update theme fonts 2026-06-11 00:55:31 +00:00
a73d22bb4a Merge version_2 into main
Merge version_2 into main
2026-06-11 00:55:23 +00:00
4afcb3a9a2 Update theme colors 2026-06-11 00:55:17 +00:00
3 changed files with 19 additions and 11 deletions

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
@@ -40,6 +41,13 @@ export const metadata: Metadata = {
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
@@ -53,7 +61,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${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-inter), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background: #080200;
--card: #1a0d0b;
--foreground: #ffe6d5;
--primary-cta: #ffaa70;
--primary-cta-text: #080200;
--secondary-cta: #170b07;
--secondary-cta-text: #ffe6d5;
--accent: #7b5e4a;
--background-accent: #b8541e;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);