4 Commits

Author SHA1 Message Date
71258905e5 Update theme fonts 2026-04-28 19:58:13 +00:00
5ad15335d3 Update theme fonts 2026-04-28 19:58:12 +00:00
aa20562c5e Update theme colors 2026-04-28 19:57:57 +00:00
0ad4bd94b0 Update theme colors 2026-04-28 19:57:53 +00:00
3 changed files with 20 additions and 14 deletions

View File

@@ -7,6 +7,7 @@ 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 { Source_Sans_3 } from "next/font/google"; import { Source_Sans_3 } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -16,8 +17,13 @@ export const metadata: Metadata = {
keywords: ["restaurant, butchery, RAK, kebab, arabian food, Al Hayba"], keywords: ["restaurant, butchery, RAK, kebab, arabian food, Al Hayba"],
}; };
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -29,7 +35,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${sourceSans3.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-source-sans-3), 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-source-sans-3), 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: #fbfaff; --background: #ffffff;
--card: #f7f5ff; --card: #f9f9f9;
--foreground: #0f0022; --foreground: #000f06e6;
--primary-cta: #8b5cf6; --primary-cta: #0a7039;
--primary-cta-text: #fbfaff; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #f9f9f9;
--secondary-cta-text: #0f0022; --secondary-cta-text: #000f06e6;
--accent: #d8cef5; --accent: #e2e2e2;
--background-accent: #c4a8f9; --background-accent: #c4c4c4;
/* 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);