8 Commits

Author SHA1 Message Date
f7a1085fee Update theme colors 2026-04-12 05:53:06 +00:00
628dc66463 Update theme fonts 2026-04-12 05:50:01 +00:00
8f32d49d67 Update theme fonts 2026-04-12 05:50:01 +00:00
32c86b8d06 Update theme fonts 2026-04-12 05:49:26 +00:00
ae0b0da4fa Update theme fonts 2026-04-12 05:49:25 +00:00
53b5e7fed2 Update theme colors 2026-04-12 05:49:13 +00:00
663792f54e Update theme colors 2026-04-12 05:48:41 +00:00
b42cc4b474 Update theme colors 2026-04-12 05:48:09 +00:00
3 changed files with 17 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 { Playfair_Display, Lato } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -20,8 +22,12 @@ export const metadata: Metadata = {
},
};
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["400", "700"] });
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -31,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${playfair.variable} ${lato.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--background: #adffa1;
--card: #f9f9f9;
--foreground: #0b1f3a;
--primary-cta: #c8a96a;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #0b1f3a;
--secondary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #f9f9f9;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);