5 Commits

Author SHA1 Message Date
ff18854fac Update theme fonts 2026-06-11 20:03:16 +00:00
2fd110df4e Update theme fonts 2026-06-11 20:03:15 +00:00
01ddf1060a Update theme fonts 2026-06-11 20:03:03 +00:00
012dd3aae1 Update theme fonts 2026-06-11 20:03:03 +00:00
e5ba0fae5b Update theme colors 2026-06-11 20:02:41 +00:00
3 changed files with 16 additions and 17 deletions

View File

@@ -7,6 +7,8 @@ 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 { Libre_Baskerville } from "next/font/google"; import { Libre_Baskerville } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -41,13 +43,10 @@ export const metadata: Metadata = {
}, },
}; };
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"], const archivo = Archivo({
weight: ["400", "700"], variable: "--font-archivo",
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -59,7 +58,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}> <body className={`${archivo.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-archivo), 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-libre-baskerville), serif; font-family: var(--font-archivo), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #fbfaff; --background: #e3deea;
--card: #ffffff; --card: #ffffff;
--foreground: #0f0022; --foreground: #1f2027;
--primary-cta: #8b5cf6; --primary-cta: #1f2027;
--primary-cta-text: #fbfaff; --primary-cta-text: #e3deea;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;
--secondary-cta-text: #0f0022; --secondary-cta-text: #1f2027;
--accent: #d8cef5; --accent: #627dc6;
--background-accent: #c4a8f9; --background-accent: #627dc6;
/* 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);