7 Commits

Author SHA1 Message Date
c48c958b3c Merge version_2 into main
Merge version_2 into main
2026-05-09 03:45:14 +00:00
97d30effd4 Update theme fonts 2026-05-09 03:45:11 +00:00
7c8ad6fddd Update theme fonts 2026-05-09 03:45:10 +00:00
944497f6b6 Merge version_2 into main
Merge version_2 into main
2026-05-09 03:43:55 +00:00
9fbabacfdc Update theme colors 2026-05-09 03:43:49 +00:00
4c34d01c06 Merge version_1 into main
Merge version_1 into main
2026-05-09 03:43:25 +00:00
66b00a649f Merge version_1 into main
Merge version_1 into main
2026-05-09 03:41:47 +00:00
3 changed files with 21 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -25,10 +26,15 @@ export const metadata: Metadata = {
},
};
const roboto = Roboto({
variable: "--font-roboto",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -39,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.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-roboto), 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-roboto), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #F8F4EC;
--card: #ffffff;
--foreground: #2A2A2A;
--primary-cta: #C66A1E;
--primary-cta-text: #FFFFFF;
--secondary-cta: #4B2E1E;
--secondary-cta-text: #FFFFFF;
--accent: #D9A441;
--background-accent: #E5DCD0;
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #106EFB;
--primary-cta-text: #ffffff;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #535353;
--background-accent: #106EFB;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);