17 Commits

Author SHA1 Message Date
2c8b07fdf3 Update theme colors 2026-05-09 20:45:26 +00:00
40d9dfd18d Update theme colors 2026-05-09 20:44:47 +00:00
58345ea025 Update theme colors 2026-05-09 20:43:59 +00:00
2cc4015f81 Update theme colors 2026-05-09 20:43:30 +00:00
c24707c2ee Update theme colors 2026-05-09 20:42:57 +00:00
c4803836fb Update theme colors 2026-05-09 20:42:26 +00:00
01347de9ad Update theme colors 2026-05-09 20:41:53 +00:00
af07df45ab Update theme colors 2026-05-09 20:39:39 +00:00
5833fa30d5 Update theme colors 2026-05-09 20:39:08 +00:00
bb4074d7a0 Update theme colors 2026-05-09 20:38:51 +00:00
2b87859973 Update theme fonts 2026-05-09 20:38:05 +00:00
49d61151ed Update theme fonts 2026-05-09 20:38:04 +00:00
61ed2d5804 Update theme fonts 2026-05-09 20:37:25 +00:00
44ba8395e6 Update theme fonts 2026-05-09 20:37:25 +00:00
7c4f2fa9c9 Update theme colors 2026-05-09 20:36:34 +00:00
5ed22d9bfb Update theme colors 2026-05-09 20:36:27 +00:00
121799a9e1 Update theme colors 2026-05-09 20:34:53 +00:00
3 changed files with 18 additions and 18 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 { Open_Sans } from "next/font/google"; import { Open_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -24,12 +26,10 @@ export const metadata: Metadata = {
}, },
}; };
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], const raleway = Raleway({
}); variable: "--font-raleway",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -41,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${inter.variable} ${openSans.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-open-sans), 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-inter), 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: #000000; --background: #fafffb;
--card: #1f4035; --card: #f7fffa;
--foreground: #ffffff; --foreground: #001a0a;
--primary-cta: #ffffff; --primary-cta: #0a7039;
--primary-cta-text: #051a12; --primary-cta-text: #fafffb;
--secondary-cta: #0d2b1f; --secondary-cta: #ffffff;
--secondary-cta-text: #d4f6e8; --secondary-cta-text: #001a0a;
--accent: #0d5238; --accent: #a8d9be;
--background-accent: #10b981; --background-accent: #6bbf8e;
/* 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);