10 Commits

Author SHA1 Message Date
64a3075b41 Update theme colors 2026-06-05 18:07:17 +00:00
37d00deca4 Update theme colors 2026-06-05 18:07:07 +00:00
344cf20bd6 Update theme colors 2026-06-05 18:06:50 +00:00
9e4c41a1bb Update theme colors 2026-06-05 18:06:19 +00:00
03ae5f8ddc Update theme colors 2026-06-05 18:06:02 +00:00
dfed9a00f6 Update theme colors 2026-06-05 18:05:43 +00:00
de94a16ff8 Update theme colors 2026-06-05 18:05:24 +00:00
32b3c22d94 Update theme fonts 2026-06-05 18:04:38 +00:00
7af6413306 Update theme fonts 2026-06-05 18:04:38 +00:00
6813e03eb4 Update theme colors 2026-06-05 18:04:04 +00:00
3 changed files with 16 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Lato } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -40,10 +41,10 @@ export const metadata: Metadata = {
},
};
const lato = Lato({
variable: "--font-lato",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -54,7 +55,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.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-lato), 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-lato), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0798ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #0c1325;
--accent: #93c7ff;
--background-accent: #a8cde8;
--background: #f6e8ce;
--card: #0e2a0c;
--foreground: #0E2A0C;
--primary-cta: #ffaa70;
--primary-cta-text: #080200;
--secondary-cta: #170b07;
--secondary-cta-text: #ffe6d5;
--accent: #56321a;
--background-accent: #843911;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);