13 Commits

Author SHA1 Message Date
e5c3f9a41a Merge version_6 into main
Merge version_6 into main
2026-04-25 13:53:08 +00:00
ccfe00320e Update theme fonts 2026-04-25 13:53:05 +00:00
ffc522d740 Update theme fonts 2026-04-25 13:53:04 +00:00
1d8000f7ac Merge version_6 into main
Merge version_6 into main
2026-04-25 13:51:43 +00:00
60cefb1ceb Update theme colors 2026-04-25 13:51:39 +00:00
c2e4f0cfca Merge version_5 into main
Merge version_5 into main
2026-04-25 13:51:28 +00:00
730053129f Update theme colors 2026-04-25 13:51:25 +00:00
383106a851 Merge version_4 into main
Merge version_4 into main
2026-04-25 13:51:10 +00:00
730e7f1cca Update theme colors 2026-04-25 13:51:07 +00:00
214bad8ddc Merge version_3 into main
Merge version_3 into main
2026-04-25 13:50:57 +00:00
748a027d1e Update theme colors 2026-04-25 13:50:54 +00:00
35b12534d4 Merge version_2 into main
Merge version_2 into main
2026-04-25 13:50:15 +00:00
cd5604ce72 Update theme colors 2026-04-25 13:50:12 +00:00
3 changed files with 18 additions and 15 deletions

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -21,12 +22,14 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -38,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fff1f2;
--card: #ffffff;
--foreground: #881337;
--primary-cta: #e11d48;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120a00e6;
--primary-cta: #ff8c42;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--secondary-cta-text: #881337;
--accent: #fda4af;
--background-accent: #fecdd3;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);