5 Commits

Author SHA1 Message Date
5aa56d57cc Update theme colors 2026-04-12 03:23:14 +00:00
2f183b0221 Update theme colors 2026-04-12 03:22:52 +00:00
6a6b09a891 Update theme fonts 2026-04-12 03:21:06 +00:00
665febd5af Update theme fonts 2026-04-12 03:21:06 +00:00
f8be45163e Update theme colors 2026-04-12 03:20:33 +00:00
3 changed files with 10 additions and 12 deletions

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
@@ -24,12 +25,9 @@ export const metadata: Metadata = {
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
@@ -41,7 +39,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,10 +10,10 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--background: #A9AAA5;
--card: #f9f9f9;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--foreground: #120000;
--primary-cta: #000000;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6;