20 Commits

Author SHA1 Message Date
5ffea10ca3 Update theme fonts 2026-04-12 23:37:40 +00:00
630996092c Update theme fonts 2026-04-12 23:37:40 +00:00
6ecc93839c Update theme fonts 2026-04-12 23:37:24 +00:00
bb826dc460 Update theme fonts 2026-04-12 23:37:23 +00:00
04b0646ea8 Update theme fonts 2026-04-12 23:32:20 +00:00
af930e82d4 Update theme fonts 2026-04-12 23:32:19 +00:00
1df1410a3f Update theme fonts 2026-04-12 23:32:00 +00:00
b099c00e3e Update theme fonts 2026-04-12 23:32:00 +00:00
2942ea6ffa Update theme fonts 2026-04-12 23:31:51 +00:00
bb1ebd8c06 Update theme fonts 2026-04-12 23:31:51 +00:00
31f0b298cd Update theme fonts 2026-04-12 23:31:48 +00:00
21d88af3d2 Update theme fonts 2026-04-12 23:31:47 +00:00
1cbf751d81 Update theme colors 2026-04-12 23:31:27 +00:00
983824e653 Update theme colors 2026-04-12 23:30:48 +00:00
5a9c1ebc85 Update theme colors 2026-04-12 23:29:54 +00:00
58821ca192 Update theme colors 2026-04-12 23:29:16 +00:00
3b1ffad0ce Update theme colors 2026-04-12 23:28:51 +00:00
0a817eb8c4 Update theme colors 2026-04-12 23:27:01 +00:00
843f16f639 Update theme colors 2026-04-12 23:26:54 +00:00
5958fbb635 Update theme colors 2026-04-12 23:26:42 +00:00
3 changed files with 22 additions and 16 deletions

View File

@@ -7,6 +7,10 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Roboto } from "next/font/google";
import { Figtree } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -20,12 +24,14 @@ export const metadata: Metadata = {
},
};
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
@@ -37,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--background: #000000;
--card: #0d7424;
--foreground: #e2e15e;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--secondary-cta-text: #000612e6;
--accent: #000000;
--background-accent: #000000;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);