7 Commits

Author SHA1 Message Date
192c2bdbe4 Update theme fonts 2026-04-18 07:19:45 +00:00
e4c0821cbc Update theme fonts 2026-04-18 07:19:45 +00:00
ba23f1fa21 Update theme fonts 2026-04-18 07:19:27 +00:00
6dfd0085ee Update theme fonts 2026-04-18 07:19:26 +00:00
342962fab6 Update theme fonts 2026-04-18 07:19:25 +00:00
357477d3d2 Update theme fonts 2026-04-18 07:19:24 +00:00
88428d2a50 Update theme colors 2026-04-18 07:19:09 +00:00
3 changed files with 18 additions and 9 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Lato } from "next/font/google";
import { Nunito } from "next/font/google";
import { Mulish } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -21,10 +24,16 @@ export const metadata: Metadata = {
},
};
const lato = Lato({
variable: "--font-lato",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -35,7 +44,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.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-inter), 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

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;