3 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
3 changed files with 10 additions and 11 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 { 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",
subsets: ["latin"]
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"]
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -58,7 +57,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${poppins.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-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -12,7 +12,7 @@
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f8f5ffe6;
--foreground: #fff5f6;
--primary-cta: #c89bff;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;