14 Commits

Author SHA1 Message Date
960366da2f Update theme colors 2026-06-10 11:51:00 +00:00
643833acb7 Update theme colors 2026-06-10 11:50:52 +00:00
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
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 { getVisualEditScript } from "@/utils/visual-edit-script";
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({
variable: "--font-inter",
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -58,7 +64,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4f0;
--card: #ffffff;
--foreground: #1a1a1a;
--primary-cta: #2c2c2c;
--primary-cta-text: #f5f4f0;
--secondary-cta: #f5f4f0;
--secondary-cta-text: #1a1a1a;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
--background: #0a0a0a;
--card: #080808;
--foreground: #ffffffe6;
--primary-cta: #e6e6e6;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffffe6;
--accent: #737373;
--background-accent: #737373;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);