8 Commits

Author SHA1 Message Date
99ef428fee Update theme fonts 2026-05-09 16:23:16 +00:00
e7fed90ddf Update theme fonts 2026-05-09 16:23:16 +00:00
4d25491228 Update theme fonts 2026-05-09 16:22:56 +00:00
12ac3383b9 Update theme fonts 2026-05-09 16:22:55 +00:00
1b1a53bd06 Update theme colors 2026-05-09 16:22:41 +00:00
e169ddffb5 Update theme colors 2026-05-09 16:22:29 +00:00
e1cce6c9a2 Update theme colors 2026-05-09 16:22:18 +00:00
2f2546827e Update theme colors 2026-05-09 16:22:06 +00:00
3 changed files with 18 additions and 14 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -21,8 +23,10 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
@@ -34,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.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-public-sans), 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-public-sans), sans-serif;
font-family: var(--font-raleway), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #106EFB;
--primary-cta-text: #ffffff;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #535353;
--background-accent: #106EFB;
--background: #fffefe;
--card: #f6f7f4;
--foreground: #080908;
--primary-cta: #0e3a29;
--primary-cta-text: #fffefe;
--secondary-cta: #e7eecd;
--secondary-cta-text: #080908;
--accent: #35c18b;
--background-accent: #ecebe4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);