17 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
e47fa9dd2d Update theme colors 2026-06-08 12:02:05 +00:00
3 changed files with 18 additions and 17 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 { 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({
variable: "--font-inter",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
@@ -58,7 +59,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${manrope.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), sans-serif;
font-family: var(--font-manrope), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-libre-baskerville), serif;
font-family: var(--font-manrope), sans-serif;
}

View File

@@ -12,13 +12,13 @@
--background: #f7f6f7;
--card: #ffffff;
--foreground: #f2f2f2;
--primary-cta: #ff6207;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #25190c;
--accent: #ffce93;
--background-accent: #e8cfa8;
--foreground: #F9F0F0;
--primary-cta: #f5f5f5;
--primary-cta-text: #151515;
--secondary-cta: #242325;
--secondary-cta-text: #F9F0F0;
--accent: #B49977;
--background-accent: #B49977;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);