4 Commits

Author SHA1 Message Date
fa44989e36 Update theme fonts 2026-04-17 03:00:21 +00:00
7a3ac556b3 Update theme fonts 2026-04-17 03:00:20 +00:00
9918f39e66 Update theme colors 2026-04-17 02:57:30 +00:00
34a75c40ab Update theme colors 2026-04-17 02:57:01 +00:00
3 changed files with 9 additions and 6 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 { Libre_Baskerville } from "next/font/google";
@@ -20,9 +21,11 @@ export const metadata: Metadata = {
},
};
const mulish = Mulish({
variable: "--font-mulish",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -37,7 +40,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-mulish), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -12,12 +12,12 @@
--background: #191970;
--card: #1a1a1a;
--foreground: #504A4B;
--foreground: #ffffff;
--primary-cta: #1f7cff;
--primary-cta-text: #ffffff;
--secondary-cta: #010101;
--secondary-cta-text: #ffffff;
--accent: #1f7cff;
--accent: #ff7dab;
--background-accent: #bc1eff;
/* text sizing - set by ThemeProvider */