13 Commits

Author SHA1 Message Date
ad4ca5384e Update theme fonts 2026-04-18 05:30:18 +00:00
30573b068f Update theme fonts 2026-04-18 05:30:17 +00:00
f234c6ba37 Update theme fonts 2026-04-18 05:30:15 +00:00
a2fe648c3b Update theme fonts 2026-04-18 05:30:14 +00:00
7e58fae043 Update theme fonts 2026-04-18 05:29:23 +00:00
1c7e855ed1 Update theme fonts 2026-04-18 05:29:23 +00:00
23aed80578 Update theme fonts 2026-04-18 05:29:15 +00:00
8ef97cf1f8 Update theme fonts 2026-04-18 05:29:15 +00:00
56eb20f590 Update theme colors 2026-04-18 05:28:45 +00:00
06ae389023 Update theme colors 2026-04-18 05:28:42 +00:00
f8d604e709 Update theme colors 2026-04-18 05:28:34 +00:00
a6de6477ec Update theme colors 2026-04-18 05:28:27 +00:00
9c694218a2 Update theme colors 2026-04-18 05:28:21 +00:00
3 changed files with 17 additions and 9 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 { Source_Sans_3 } from "next/font/google";
import { Lato } from "next/font/google";
import { Manrope } from "next/font/google";
import { Poppins } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -21,8 +25,12 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
@@ -34,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.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-source-sans-3), 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-source-sans-3), sans-serif;
font-family: var(--font-archivo), sans-serif;
}

View File

@@ -12,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #FF7B05;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);