15 Commits

Author SHA1 Message Date
b0def99271 Update theme fonts 2026-06-09 19:13:46 +00:00
51e4c2941e Update theme fonts 2026-06-09 19:13:46 +00:00
842e2a74a3 Update theme fonts 2026-06-09 18:37:57 +00:00
8fadd54ad2 Update theme fonts 2026-06-09 18:37:56 +00:00
e07ea8d9e3 Update theme fonts 2026-06-09 18:37:49 +00:00
240ed18582 Update theme fonts 2026-06-09 18:37:48 +00:00
146bdad100 Update theme fonts 2026-06-09 18:37:41 +00:00
cda5b45e67 Update theme fonts 2026-06-09 18:37:41 +00:00
c360acd93a Update theme fonts 2026-06-09 18:37:20 +00:00
ab813d17a4 Update theme fonts 2026-06-09 18:37:19 +00:00
99498fc955 Update theme colors 2026-06-09 18:37:10 +00:00
eb568cca7d Update theme colors 2026-06-09 18:36:56 +00:00
e5577ab5aa Update theme colors 2026-06-09 18:36:52 +00:00
3290bc341e Update theme colors 2026-06-09 18:36:49 +00:00
0d3de507c3 Update theme colors 2026-06-09 18:36:36 +00:00
3 changed files with 28 additions and 12 deletions

View File

@@ -7,6 +7,12 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google"; import { Archivo } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -41,8 +47,18 @@ export const metadata: Metadata = {
}, },
}; };
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"]
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -53,7 +69,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${archivo.variable} antialiased`}> <body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f5f5; --background: #f5faff;
--card: #ffffff; --card: #ffffff;
--foreground: #1c1c1c; --foreground: #001122;
--primary-cta: #1f514c; --primary-cta: #15479c;
--primary-cta-text: #f5f5f5; --primary-cta-text: #f5faff;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c; --secondary-cta-text: #001122;
--accent: #159c49; --accent: #a8cce8;
--background-accent: #a8e8ba; --background-accent: #7ba3cf;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);