16 Commits

Author SHA1 Message Date
03b5b49659 Update theme fonts 2026-05-24 21:00:44 +00:00
ab7572fe32 Update theme fonts 2026-05-24 21:00:44 +00:00
6d5a32c98f Update theme fonts 2026-05-24 21:00:41 +00:00
f1f99f4251 Update theme fonts 2026-05-24 21:00:40 +00:00
06377a5835 Update theme fonts 2026-05-24 21:00:36 +00:00
b987bc8369 Update theme fonts 2026-05-24 21:00:36 +00:00
8b24952ee1 Update theme fonts 2026-05-24 21:00:23 +00:00
64e30506b8 Update theme fonts 2026-05-24 21:00:22 +00:00
c2ed7b1f99 Update theme fonts 2026-05-24 21:00:20 +00:00
67cfecce7f Update theme fonts 2026-05-24 21:00:19 +00:00
d91a89146b Update theme colors 2026-05-24 20:59:14 +00:00
d82b6b8131 Update theme colors 2026-05-24 20:59:05 +00:00
8079ed7206 Update theme colors 2026-05-24 20:58:55 +00:00
179e34d572 Update theme colors 2026-05-24 20:58:45 +00:00
0a936a9824 Update theme colors 2026-05-24 20:58:15 +00:00
35b8207688 Update theme colors 2026-05-24 20:57:17 +00:00
3 changed files with 21 additions and 12 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -21,9 +24,15 @@ export const metadata: Metadata = {
},
};
const montserrat = Montserrat({
variable: "--font-montserrat",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -38,7 +47,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${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-montserrat), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fbfaff;
--card: #ffffff;
--foreground: #0f0022;
--primary-cta: #8b5cf6;
--primary-cta-text: #fbfaff;
--background: #efebe5;
--card: #f7f2ea;
--foreground: #000000;
--primary-cta: #000000;
--primary-cta-text: #efebe5;
--secondary-cta: #ffffff;
--secondary-cta-text: #0f0022;
--accent: #d8cef5;
--background-accent: #c4a8f9;
--secondary-cta-text: #000000;
--accent: #ffffff;
--background-accent: #e1b875;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);