9 Commits

Author SHA1 Message Date
ccac9b1140 Update theme fonts 2026-04-12 06:11:51 +00:00
59c6129577 Update theme fonts 2026-04-12 06:11:51 +00:00
9fc99edec8 Update theme fonts 2026-04-12 06:11:41 +00:00
cd7a03f919 Update theme fonts 2026-04-12 06:11:40 +00:00
8740036d79 Update theme fonts 2026-04-12 06:11:15 +00:00
6cc3f4ce4e Update theme fonts 2026-04-12 06:11:15 +00:00
502d4b2fbd Update theme colors 2026-04-12 06:10:47 +00:00
9f958e283b Update theme colors 2026-04-12 06:09:23 +00:00
b276eb047c Update theme colors 2026-04-12 06:08:12 +00:00
3 changed files with 12 additions and 11 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -21,12 +23,11 @@ export const metadata: Metadata = {
},
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
@@ -38,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body className={`${montserrat.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-montserrat), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}

View File

@@ -10,14 +10,14 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fdf2f8;
--background: #bb598f;
--card: #ffffff;
--foreground: #831843;
--primary-cta: #db2777;
--primary-cta-text: #ffffff;
--secondary-cta: #fbcfe8;
--secondary-cta-text: #831843;
--accent: #fce7f3;
--accent: #ff0ab0;
--background-accent: #fbcfe8;
/* text sizing - set by ThemeProvider */