16 Commits

Author SHA1 Message Date
4e269e3135 Update theme fonts 2026-06-08 12:05:45 +00:00
4fcaae8491 Update theme fonts 2026-06-08 12:05:45 +00:00
adc514fc4d Update theme fonts 2026-06-08 12:05:39 +00:00
9d34020ddf Update theme fonts 2026-06-08 12:05:38 +00:00
5c3f694f3f Update theme fonts 2026-06-08 12:05:22 +00:00
cae71e9e9a Update theme fonts 2026-06-08 12:05:22 +00:00
6193b3ba6a Update theme fonts 2026-06-08 12:05:17 +00:00
c45f8d165c Update theme fonts 2026-06-08 12:05:16 +00:00
79e1955cf7 Update theme fonts 2026-06-08 12:04:35 +00:00
a6e6c2bc3d Update theme fonts 2026-06-08 12:04:35 +00:00
c0a6126c5d Update theme colors 2026-06-08 12:03:33 +00:00
ce36e4f8c6 Update theme colors 2026-06-08 12:03:18 +00:00
382640dd82 Update theme colors 2026-06-08 12:03:03 +00:00
5521a0a5d6 Update theme colors 2026-06-08 12:02:29 +00:00
c709802fa3 Update theme colors 2026-06-08 12:02:23 +00:00
8dc3df18d7 Update theme colors 2026-06-08 12:02:12 +00:00
3 changed files with 17 additions and 16 deletions

View File

@@ -7,6 +7,7 @@ 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 { Libre_Baskerville } from "next/font/google"; import { Libre_Baskerville } from "next/font/google";
import { Manrope } from "next/font/google";
@@ -40,13 +41,13 @@ export const metadata: Metadata = {
}, },
}; };
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({ const manrope = Manrope({
variable: "--font-inter", variable: "--font-manrope",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -58,7 +59,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}> <body className={`${manrope.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-inter), sans-serif; font-family: var(--font-manrope), 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-libre-baskerville), serif; font-family: var(--font-manrope), sans-serif;
} }

View File

@@ -13,12 +13,12 @@
--background: #f7f6f7; --background: #f7f6f7;
--card: #ffffff; --card: #ffffff;
--foreground: #F9F0F0; --foreground: #F9F0F0;
--primary-cta: #ff6207; --primary-cta: #f5f5f5;
--primary-cta-text: #f7f6f7; --primary-cta-text: #151515;
--secondary-cta: #ffffff; --secondary-cta: #242325;
--secondary-cta-text: #25190c; --secondary-cta-text: #F9F0F0;
--accent: #ffce93; --accent: #B49977;
--background-accent: #e8cfa8; --background-accent: #B49977;
/* 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);