13 Commits

Author SHA1 Message Date
af262bb16a Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:44 +00:00
c65cee0188 Update theme fonts 2026-04-28 20:47:41 +00:00
dbeacd7d4e Update theme fonts 2026-04-28 20:47:40 +00:00
c0f411f3a8 Update theme fonts 2026-04-28 20:47:38 +00:00
44a66bfe29 Update theme fonts 2026-04-28 20:47:38 +00:00
b5d84d9be4 Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:33 +00:00
6f6b6f676e Update theme fonts 2026-04-28 20:47:32 +00:00
589dd73635 Update theme fonts 2026-04-28 20:47:31 +00:00
f4947e32ab Update theme fonts 2026-04-28 20:47:30 +00:00
c4c9546723 Update theme fonts 2026-04-28 20:47:29 +00:00
73ade460a9 Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:17 +00:00
8247ff66bc Update theme colors 2026-04-28 20:47:14 +00:00
3b5f14a904 Merge version_4 into main
Merge version_4 into main
2026-04-28 20:45:13 +00:00
3 changed files with 24 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 { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -20,8 +22,16 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1c1c1c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #159c49;
--background-accent: #a8e8ba;
--background: #060000;
--card: #1d0d0d;
--foreground: #ffe6e6;
--primary-cta: #ff3d4a;
--primary-cta-text: #ffffff;
--secondary-cta: #1f0a0a;
--secondary-cta-text: #ffe6e6;
--accent: #7b2d2d;
--background-accent: #b8111f;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);