29 Commits

Author SHA1 Message Date
ebabe28ade Update theme fonts 2026-04-12 23:25:55 +00:00
db354a5449 Update theme fonts 2026-04-12 23:25:55 +00:00
9b2e4bf14c Update theme fonts 2026-04-12 23:25:42 +00:00
5b2e31ab77 Update theme fonts 2026-04-12 23:25:42 +00:00
7bbd3c4367 Update theme colors 2026-04-12 23:24:01 +00:00
9b1ee9ee18 Update theme colors 2026-04-12 23:23:56 +00:00
d8fcaa4537 Update theme colors 2026-04-12 23:23:49 +00:00
6b5b095038 Update theme colors 2026-04-12 23:23:47 +00:00
1d059bc3b2 Update theme colors 2026-04-12 23:23:32 +00:00
98a98fd418 Update theme colors 2026-04-12 23:23:27 +00:00
3aae795d49 Update theme colors 2026-04-12 23:23:24 +00:00
f7413c0c15 Update theme colors 2026-04-12 23:23:21 +00:00
78d3443733 Update theme colors 2026-04-12 23:23:20 +00:00
b9fe3ce7a7 Update theme colors 2026-04-12 23:23:17 +00:00
1180ad417c Update theme colors 2026-04-12 23:23:15 +00:00
342f5454e6 Update theme colors 2026-04-12 23:23:14 +00:00
8b5ab4e702 Update theme colors 2026-04-12 23:23:09 +00:00
32242e7c35 Update theme colors 2026-04-12 23:23:07 +00:00
e5644273e4 Update theme colors 2026-04-12 23:23:05 +00:00
9ed6e19188 Update theme colors 2026-04-12 23:22:59 +00:00
ff0d0cedf3 Update theme colors 2026-04-12 23:22:57 +00:00
531765e285 Update theme colors 2026-04-12 23:22:55 +00:00
b4342e02ba Update theme colors 2026-04-12 23:22:53 +00:00
5b0c176f3c Update theme colors 2026-04-12 23:22:51 +00:00
ba78dd9769 Update theme colors 2026-04-12 23:22:45 +00:00
6647dcb21c Update theme colors 2026-04-12 23:22:42 +00:00
af326b4286 Update theme colors 2026-04-12 23:22:37 +00:00
b4511ac754 Update theme colors 2026-04-12 23:22:32 +00:00
b8d047b16e Update theme colors 2026-04-12 23:22:26 +00:00
3 changed files with 22 additions and 14 deletions

View File

@@ -7,6 +7,8 @@ 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 { Raleway } from "next/font/google"; import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,8 +22,14 @@ export const metadata: Metadata = {
}, },
}; };
const raleway = Raleway({
variable: "--font-raleway",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -33,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${raleway.variable} antialiased`}> <body className={`${publicSans.variable} ${inter.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-raleway), sans-serif; font-family: var(--font-inter), 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-raleway), sans-serif; font-family: var(--font-public-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #e3deea; --background: #000000;
--card: #ffffff; --card: #0c0c0c;
--foreground: #27231f; --foreground: #ffffff;
--primary-cta: #27231f; --primary-cta: #106EFB;
--primary-cta-text: #e3deea; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #000000;
--secondary-cta-text: #27231f; --secondary-cta-text: #ffffff;
--accent: #c68a62; --accent: #535353;
--background-accent: #c68a62; --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);