9 Commits

Author SHA1 Message Date
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
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
8247ff66bc Update theme colors 2026-04-28 20:47:14 +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 Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google"; 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"], subsets: ["latin"],
}); });
@@ -33,7 +43,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${manrope.variable} antialiased`}> <body className={`${montserrat.variable} ${inter.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-manrope), sans-serif; font-family: var(--font-inter), 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-manrope), sans-serif; font-family: var(--font-montserrat), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f5f5; --background: #060000;
--card: #ffffff; --card: #1d0d0d;
--foreground: #1c1c1c; --foreground: #ffe6e6;
--primary-cta: #1c1c1c; --primary-cta: #ff3d4a;
--primary-cta-text: #f5f5f5; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #1f0a0a;
--secondary-cta-text: #1c1c1c; --secondary-cta-text: #ffe6e6;
--accent: #159c49; --accent: #7b2d2d;
--background-accent: #a8e8ba; --background-accent: #b8111f;
/* 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);