8 Commits

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

View File

@@ -7,6 +7,7 @@ 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";
@@ -20,8 +21,13 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${publicSans.variable} ${inter.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-inter), 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-public-sans), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fffafa;
--card: #fff7f7;
--foreground: #00ffec;
--primary-cta: #e63946;
--primary-cta-text: #fffafa;
--background: #f7f6f7;
--card: #ffffff;
--foreground: #00b5fa;
--primary-cta: #0798ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #1a0000;
--accent: #f5c4c7;
--background-accent: #f09199;
--secondary-cta-text: #0c1325;
--accent: #93c7ff;
--background-accent: #a8cde8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);