9 Commits

Author SHA1 Message Date
ab99fdcc5f Update theme colors 2026-04-09 14:16:15 +00:00
2d64637b4b Update theme colors 2026-04-09 14:15:48 +00:00
fc40a57dc3 Update theme colors 2026-04-09 14:15:27 +00:00
9b7ff0e469 Update theme fonts 2026-04-09 14:13:06 +00:00
9fcae2985d Update theme fonts 2026-04-09 14:13:06 +00:00
339bd2dc88 Update theme fonts 2026-04-09 14:12:41 +00:00
03ca0779e2 Update theme fonts 2026-04-09 14:12:40 +00:00
c1d5f86db4 Update theme fonts 2026-04-09 14:12:19 +00:00
590474c480 Update theme fonts 2026-04-09 14:12:18 +00:00
3 changed files with 20 additions and 14 deletions

View File

@@ -7,6 +7,9 @@ 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 { Source_Sans_3 } from "next/font/google"; import { Source_Sans_3 } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Figtree } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -20,8 +23,11 @@ export const metadata: Metadata = {
}, },
}; };
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -33,7 +39,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}> <body className={`${raleway.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-source-sans-3), sans-serif; font-family: var(--font-raleway), 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-source-sans-3), sans-serif; font-family: var(--font-raleway), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #fbfaff; --background: #ffffff;
--card: #f7f5ff; --card: #f9f9f9;
--foreground: #0f0022; --foreground: #000612e6;
--primary-cta: #8b5cf6; --primary-cta: #106EFB;
--primary-cta-text: #fbfaff; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #f9f9f9;
--secondary-cta-text: #0f0022; --secondary-cta-text: #000612e6;
--accent: #d8cef5; --accent: #e2e2e2;
--background-accent: #c4a8f9; --background-accent: #106EFB;
/* 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);