14 Commits

Author SHA1 Message Date
8dcd07f5ec Update theme colors 2026-04-23 07:48:36 +00:00
b0996b6a9e Update theme fonts 2026-04-23 07:48:18 +00:00
d916a4d1a4 Update theme fonts 2026-04-23 07:48:18 +00:00
74cedc7bf6 Update theme colors 2026-04-23 07:47:52 +00:00
06097125fd Update theme colors 2026-04-23 07:47:15 +00:00
b5b6bd6b4a Update theme colors 2026-04-23 07:46:52 +00:00
d4c1c1432a Update theme colors 2026-04-23 07:46:42 +00:00
cf5d91b376 Update theme colors 2026-04-23 07:46:36 +00:00
a9fd53ee7e Update theme colors 2026-04-23 07:45:58 +00:00
3d16564915 Update theme fonts 2026-04-23 07:45:36 +00:00
51b4bd8679 Update theme fonts 2026-04-23 07:45:36 +00:00
678b9f7a29 Update theme colors 2026-04-23 07:44:28 +00:00
1ba1a55a73 Update theme colors 2026-04-23 07:44:07 +00:00
33da05d6ba Update theme colors 2026-04-23 07:43:28 +00:00
3 changed files with 15 additions and 10 deletions

View File

@@ -7,6 +7,8 @@ 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 { Public_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -20,9 +22,12 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -33,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${poppins.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-poppins), 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-poppins), sans-serif;
}

View File

@@ -12,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #8d474a;
--primary-cta: #8f1aa7;
--foreground: #000612e6;
--primary-cta: #106EFB;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #29c470;
--background-accent: #c4c4c4;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #106EFB;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);