12 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
8549320ca1 Update theme colors 2026-06-10 11:29:33 +00:00
3 changed files with 25 additions and 14 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google"; 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"], subsets: ["latin"],
}); });
@@ -54,7 +65,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${openSans.variable} antialiased`}> <body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-libre-baskerville), serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #0a0a0a; --background: #efebe5;
--card: #1a1a1a; --card: #f7f2ea;
--foreground: #f5f5f5; --foreground: #000000;
--primary-cta: #ffdf7d; --primary-cta: #000000;
--primary-cta-text: #0a0a0a; --primary-cta-text: #efebe5;
--secondary-cta: #1a1a1a; --secondary-cta: #ffffff;
--secondary-cta-text: #ffffff; --secondary-cta-text: #000000;
--accent: #b8860b; --accent: #ffffff;
--background-accent: #8b6914; --background-accent: #e1b875;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);