5 Commits

Author SHA1 Message Date
20ad66eed4 Update theme fonts 2026-06-11 02:04:20 +00:00
4faa74081a Update theme fonts 2026-06-11 02:04:20 +00:00
113de799a3 Update theme colors 2026-06-11 02:01:27 +00:00
d3ba06caf4 Update theme colors 2026-06-11 02:01:03 +00:00
718fb60c9e Update theme colors 2026-06-11 02:00:51 +00:00
3 changed files with 18 additions and 19 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 { DM_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -41,13 +42,11 @@ export const metadata: Metadata = {
}, },
}; };
const dmSans = DM_Sans({
variable: "--font-dm-sans", const poppins = Poppins({
subsets: ["latin"] variable: "--font-poppins",
}); subsets: ["latin"],
const inter = Inter({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
variable: "--font-inter",
subsets: ["latin"]
}); });
export default function RootLayout({ export default function RootLayout({
@@ -58,7 +57,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}> <body className={`${poppins.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-inter), sans-serif; font-family: var(--font-poppins), 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-dm-sans), sans-serif; font-family: var(--font-poppins), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f5f5; --background: #0a0a0a;
--card: #ffffff; --card: #1a1a1a;
--foreground: #1c1c1c; --foreground: #fff5f6;
--primary-cta: #1f3251; --primary-cta: #c89bff;
--primary-cta-text: #f5f5f5; --primary-cta-text: #0a0a0a;
--secondary-cta: #ffffff; --secondary-cta: #1a1a1a;
--secondary-cta-text: #1c1c1c; --secondary-cta-text: #f8f5ffe6;
--accent: #15479c; --accent: #737373;
--background-accent: #a8cce8; --background-accent: #737373;
/* 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);