11 Commits

Author SHA1 Message Date
1d7558dcee Update theme fonts 2026-04-12 21:47:01 +00:00
3f376fba8b Update theme fonts 2026-04-12 21:47:00 +00:00
d4657c6c88 Update theme fonts 2026-04-12 21:46:46 +00:00
448b8f3e91 Update theme fonts 2026-04-12 21:46:46 +00:00
b4a8bc7e26 Update theme colors 2026-04-12 21:46:08 +00:00
d877b22d72 Update theme colors 2026-04-12 21:44:15 +00:00
607db56906 Update theme colors 2026-04-12 21:41:19 +00:00
5a8f4481c4 Update theme colors 2026-04-12 21:41:06 +00:00
621b0eb20a Update theme colors 2026-04-12 21:40:58 +00:00
ca3fb21a5f Update theme colors 2026-04-12 21:40:53 +00:00
662bbc5818 Update theme colors 2026-04-12 21:40:43 +00:00
3 changed files with 22 additions and 12 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -15,7 +16,16 @@ export const metadata: Metadata = {
description: 'Professional mobile interior detailing services. We bring our expertise to your door, keeping your car interior pristine, fresh, and clean.',
};
const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"] });
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -25,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body className={`${mulish.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-mulish), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120006e6;
--primary-cta: #e63946;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120006e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background: #000000;
--card: #481f1f;
--foreground: #ffffff;
--primary-cta: #ffffff;
--primary-cta-text: #280101;
--secondary-cta: #361311;
--secondary-cta-text: #f6d4d4;
--accent: #51000b;
--background-accent: #ff2231;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);