7 Commits

Author SHA1 Message Date
f6b520df14 Update theme colors 2026-05-10 18:23:06 +00:00
93448bc069 Update theme fonts 2026-05-10 18:22:56 +00:00
91a71da519 Update theme fonts 2026-05-10 18:22:55 +00:00
8c25de42f7 Update theme fonts 2026-05-10 18:22:51 +00:00
74c3562e23 Update theme fonts 2026-05-10 18:22:50 +00:00
381c8a94c9 Update theme colors 2026-05-10 18:22:12 +00:00
3e0d5cc638 Update theme colors 2026-05-10 18:21:59 +00:00
3 changed files with 17 additions and 15 deletions

View File

@@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -24,10 +25,11 @@ export const metadata: Metadata = {
const roboto = Roboto({
variable: "--font-roboto",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -38,7 +40,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.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-roboto), 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-roboto), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #481f1f;
--foreground: #ffffff;
--primary-cta: #ffffff;
--primary-cta-text: #280101;
--secondary-cta: #361311;
--secondary-cta-text: #f6d4d4;
--accent: #51000b;
--background-accent: #ff2231;
--background: #f7f6f7;
--card: #ffffff;
--foreground: #250c0d;
--primary-cta: #b82b40;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #250c0d;
--accent: #b90941;
--background-accent: #e8a8b6;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);