9 Commits

Author SHA1 Message Date
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
c2ef968719 Update theme colors 2026-04-09 14:12:01 +00:00
6fd01149bb Update theme colors 2026-04-09 14:11:14 +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: #f6f0e9; --background: #fffefe;
--card: #efe7dd; --card: #f6f7f4;
--foreground: #2b180a; --foreground: #080908;
--primary-cta: #2b180a; --primary-cta: #0e3a29;
--primary-cta-text: #f6f0e9; --primary-cta-text: #fffefe;
--secondary-cta: #efe7dd; --secondary-cta: #e7eecd;
--secondary-cta-text: #2b180a; --secondary-cta-text: #080908;
--accent: #94877c; --accent: #35c18b;
--background-accent: #afa094; --background-accent: #ecebe4;
/* 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);