7 Commits

Author SHA1 Message Date
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
3 changed files with 19 additions and 13 deletions

View File

@@ -7,6 +7,9 @@ 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 { 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"],
});
@@ -33,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${raleway.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-raleway), 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-raleway), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fafffb;
--card: #f7fffa;
--foreground: #001a0a;
--primary-cta: #0a7039;
--primary-cta-text: #fafffb;
--background: #fbfaff;
--card: #f7f5ff;
--foreground: #0f0022;
--primary-cta: #8b5cf6;
--primary-cta-text: #fbfaff;
--secondary-cta: #ffffff;
--secondary-cta-text: #001a0a;
--accent: #a8d9be;
--background-accent: #6bbf8e;
--secondary-cta-text: #0f0022;
--accent: #d8cef5;
--background-accent: #c4a8f9;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);