10 Commits

Author SHA1 Message Date
1a5235a21b Update theme fonts 2026-06-10 10:40:20 +00:00
7d08e21a0e Update theme fonts 2026-06-10 10:40:20 +00:00
46ccfed177 Update theme fonts 2026-06-10 10:40:06 +00:00
aad1e5bcf7 Update theme fonts 2026-06-10 10:40:06 +00:00
920527acfd Update theme colors 2026-06-10 10:39:48 +00:00
d0610fdc16 Update theme colors 2026-06-10 10:39:35 +00:00
4949836aa8 Update theme colors 2026-06-10 10:39:20 +00:00
cb95c0c94f Update theme colors 2026-06-10 10:39:13 +00:00
2012322c9e Update theme colors 2026-06-10 10:38:32 +00:00
0d1252d29a Update theme colors 2026-06-10 10:38:13 +00:00
3 changed files with 17 additions and 14 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 { Poppins } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -41,10 +43,11 @@ export const metadata: Metadata = {
},
};
const poppins = Poppins({
variable: "--font-poppins",
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -55,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.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-poppins), 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-poppins), sans-serif;
font-family: var(--font-figtree), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fbfaff;
--card: #f7f5ff;
--foreground: #0f0022;
--primary-cta: #8b5cf6;
--primary-cta-text: #fbfaff;
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #511f1f;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #0f0022;
--accent: #d8cef5;
--background-accent: #c4a8f9;
--secondary-cta-text: #1c1c1c;
--accent: #8f3838;
--background-accent: #c9725c;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);