13 Commits

Author SHA1 Message Date
20d656c326 Update theme colors 2026-06-10 11:50:45 +00:00
8e3493c335 Update theme fonts 2026-06-10 08:16:57 +00:00
ead9e7ece4 Update theme fonts 2026-06-10 08:16:57 +00:00
83dec13e98 Update theme fonts 2026-06-10 08:16:49 +00:00
1772d15b23 Update theme fonts 2026-06-10 08:16:49 +00:00
cc4b5de67b Update theme fonts 2026-06-10 08:16:39 +00:00
97d825dd57 Update theme fonts 2026-06-10 08:16:39 +00:00
5b7ec75c7f Update theme fonts 2026-06-10 08:15:58 +00:00
c83d0aabd9 Update theme fonts 2026-06-10 08:15:58 +00:00
e36efad300 Update theme fonts 2026-06-10 08:15:48 +00:00
143d25b604 Update theme fonts 2026-06-10 08:15:48 +00:00
69935a4e57 Update theme colors 2026-06-10 08:13:44 +00:00
d25cb10aa7 Update theme colors 2026-06-10 08:13:24 +00:00
3 changed files with 25 additions and 19 deletions

View File

@@ -7,6 +7,11 @@ 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 { Mulish } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Lato } from "next/font/google";
@@ -40,14 +45,15 @@ export const metadata: Metadata = {
}, },
}; };
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({ const lato = Lato({
variable: "--font-inter", variable: "--font-lato",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -58,7 +64,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={`${lato.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-lato), 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-lato), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5faff; --background: #0a0a0a;
--card: #ffffff; --card: #5f1212;
--foreground: #001122; --foreground: #ffffffe6;
--primary-cta: #15479c; --primary-cta: #e6e6e6;
--primary-cta-text: #f5faff; --primary-cta-text: #0a0a0a;
--secondary-cta: #ffffff; --secondary-cta: #1a1a1a;
--secondary-cta-text: #001122; --secondary-cta-text: #ffffffe6;
--accent: #a8cce8; --accent: #737373;
--background-accent: #7ba3cf; --background-accent: #737373;
/* 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);