8 Commits

Author SHA1 Message Date
c4f20faba5 Update theme fonts 2026-05-09 18:36:10 +00:00
db9d0a41e0 Update theme fonts 2026-05-09 18:36:10 +00:00
133b4be6fa Update theme fonts 2026-05-09 18:35:56 +00:00
8b07c94d0d Update theme fonts 2026-05-09 18:35:56 +00:00
ce1b1c8f6a Update theme fonts 2026-05-09 18:35:30 +00:00
857c4bd89a Update theme fonts 2026-05-09 18:35:30 +00:00
d7cb05b7da Update theme colors 2026-05-09 18:33:31 +00:00
43fd7b82eb Update theme colors 2026-05-09 18:33:12 +00:00
3 changed files with 24 additions and 14 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -20,10 +23,17 @@ export const metadata: Metadata = {
},
};
const poppins = Poppins({
variable: "--font-poppins",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -34,7 +44,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.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-poppins), 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-poppins), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fdf2f8;
--card: #ffffff;
--foreground: #4c0519;
--primary-cta: #db2777;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #fce7f3;
--secondary-cta-text: #000612e6;
--accent: #fbcfe8;
--background-accent: #f9a8d4;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);