From a4f00053bf966d805295c6399122177a279f72cd Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 07:21:41 +0000 Subject: [PATCH 1/2] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 2b4285a..5815453 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #fff8f5;; - --card: #fff0eb;; - --foreground: #3d2c29;; - --primary-cta: #e8a090;; - --secondary-cta: #ffffff;; - --accent: #f5d5cc;; - --background-accent: #f0c4b8;; + --background: #080000; + --card: #1e0d0d; + --foreground: #ffe6e6; + --primary-cta: #ff7a7a; + --secondary-cta: #1e0909; + --accent: #7b4242; + --background-accent: #65292c; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-merriweather), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-merriweather), sans-serif; + font-family: var(--font-inter), sans-serif; } \ No newline at end of file -- 2.49.1 From ad153097b65c6a891082096ac1872134eb4af312 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 07:21:42 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e1d160f..9277ffd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,12 @@ import type { Metadata } from "next"; -import { Merriweather } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const merriweather = Merriweather({ - variable: "--font-merriweather", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["300", "400", "700", "900"], }); export const metadata: Metadata = { @@ -35,7 +34,7 @@ export default function RootLayout({ {children} -- 2.49.1