8 Commits

Author SHA1 Message Date
9510181561 Merge version_2 into main
Merge version_2 into main
2026-04-13 13:52:22 +00:00
1748303208 Update theme fonts 2026-04-13 13:52:19 +00:00
4e5a87a432 Update theme fonts 2026-04-13 13:52:19 +00:00
de802002b2 Merge version_2 into main
Merge version_2 into main
2026-04-13 13:52:01 +00:00
d5c94ba3f7 Update theme fonts 2026-04-13 13:51:58 +00:00
0c7ebb11a0 Update theme fonts 2026-04-13 13:51:58 +00:00
667b438e92 Merge version_2 into main
Merge version_2 into main
2026-04-13 13:51:27 +00:00
0a86aab909 Update theme colors 2026-04-13 13:51:24 +00:00
3 changed files with 19 additions and 12 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 { Inter_Tight } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,10 +22,16 @@ export const metadata: Metadata = {
},
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -35,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.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-inter-tight), 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-inter-tight), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -12,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #0a0a0a;
--primary-cta: #c5a059;
--foreground: #120a00e6;
--primary-cta: #E34400;
--primary-cta-text: #ffffff;
--secondary-cta: #0a0a0a;
--secondary-cta-text: #ffffff;
--accent: #c5a059;
--background-accent: #f4f4f4;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #E34400;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);