22 Commits

Author SHA1 Message Date
91513e41f7 Update theme fonts 2026-04-22 12:08:15 +00:00
ea0e6eee6d Update theme fonts 2026-04-22 12:08:14 +00:00
6b65cecff2 Update theme fonts 2026-04-22 12:08:07 +00:00
384392ed69 Update theme fonts 2026-04-22 12:08:06 +00:00
b2890c65d9 Update theme fonts 2026-04-22 12:08:00 +00:00
74a95ef98b Update theme fonts 2026-04-22 12:08:00 +00:00
5a7feea8bd Update theme fonts 2026-04-22 12:07:54 +00:00
ea91e1bed2 Update theme fonts 2026-04-22 12:07:54 +00:00
2b253ea67f Update theme colors 2026-04-22 12:07:12 +00:00
768d4b4571 Update theme colors 2026-04-22 12:07:06 +00:00
78f3008605 Update theme colors 2026-04-22 12:07:00 +00:00
13f92c4132 Update theme fonts 2026-04-22 12:06:42 +00:00
2f0e805f24 Update theme fonts 2026-04-22 12:06:41 +00:00
ea3a5edc2a Update theme colors 2026-04-22 12:06:08 +00:00
6d02d4ee87 Update theme colors 2026-04-22 12:06:04 +00:00
d061e8c2ef Update theme colors 2026-04-22 12:05:59 +00:00
ae319bd317 Update theme colors 2026-04-22 12:05:54 +00:00
41922350e9 Update theme colors 2026-04-22 12:05:50 +00:00
04a531fd8b Update theme colors 2026-04-22 12:05:46 +00:00
23b41f1ceb Update theme colors 2026-04-22 12:05:41 +00:00
41b5490277 Update theme colors 2026-04-22 12:05:34 +00:00
ce3d539671 Update theme colors 2026-04-22 12:05:19 +00:00
3 changed files with 23 additions and 17 deletions

View File

@@ -7,6 +7,11 @@ 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 { Montserrat } from "next/font/google"; import { Montserrat } from "next/font/google";
import { Poppins } from "next/font/google";
import { Mulish } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,12 +25,13 @@ export const metadata: Metadata = {
}, },
}; };
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -37,7 +43,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}> <body className={`${publicSans.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-inter), sans-serif; font-family: var(--font-public-sans), 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-montserrat), 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: #0a0a0a; --background: #010912;
--card: #1a1a1a; --card: #152840;
--foreground: #ffffff; --foreground: #e6f0ff;
--primary-cta: #C8A96A; --primary-cta: #cee7ff;
--primary-cta-text: #000000; --primary-cta-text: #010912;
--secondary-cta: #1a1a1a; --secondary-cta: #0e1a29;
--secondary-cta-text: #ffffff; --secondary-cta-text: #ffffff;
--accent: #C8A96A; --accent: #3f5c79;
--background-accent: #262626; --background-accent: #004a93;
/* 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);