8 Commits

Author SHA1 Message Date
fc1450c3ff Update theme fonts 2026-05-13 15:01:58 +00:00
d706779dd2 Update theme fonts 2026-05-13 15:01:58 +00:00
6e196c0de0 Update theme fonts 2026-05-13 15:01:09 +00:00
661b2b27d8 Update theme fonts 2026-05-13 15:01:08 +00:00
baaa748603 Update theme colors 2026-05-13 15:00:28 +00:00
01343a0795 Update theme colors 2026-05-13 14:59:58 +00:00
0941c0623c Update theme colors 2026-05-13 14:59:42 +00:00
7b57e4d426 Update theme colors 2026-05-13 14:59:25 +00:00
3 changed files with 12 additions and 8 deletions

View File

@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -19,8 +21,10 @@ export const metadata: Metadata = {
},
};
const inter = Inter({
variable: "--font-inter",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -32,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body className={`${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-open-sans), sans-serif;
}

View File

@@ -11,14 +11,14 @@
--background-accent: #ffffff; */
--background: #000000;
--card: #f9f9f9;
--card: #000000;
--foreground: #ffffff;
--primary-cta: #106EFB;
--primary-cta: #ffffff;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #FFD700;
--background-accent: #ff0000;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);