6 Commits

Author SHA1 Message Date
2b87859973 Update theme fonts 2026-05-09 20:38:05 +00:00
49d61151ed Update theme fonts 2026-05-09 20:38:04 +00:00
61ed2d5804 Update theme fonts 2026-05-09 20:37:25 +00:00
44ba8395e6 Update theme fonts 2026-05-09 20:37:25 +00:00
7c4f2fa9c9 Update theme colors 2026-05-09 20:36:34 +00:00
5ed22d9bfb Update theme colors 2026-05-09 20:36:27 +00:00
3 changed files with 18 additions and 18 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 { Open_Sans } from "next/font/google"; import { Open_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -24,12 +26,10 @@ export const metadata: Metadata = {
}, },
}; };
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], const raleway = Raleway({
}); variable: "--font-raleway",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -41,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}> <body className={`${raleway.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-open-sans), sans-serif; font-family: var(--font-raleway), 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-inter), sans-serif; font-family: var(--font-raleway), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #060000; --background: #f5f5f5;
--card: #1d0d0d; --card: #ffffff;
--foreground: #ffe6e6; --foreground: #1c1c1c;
--primary-cta: #ff3d4a; --primary-cta: #511f1f;
--primary-cta-text: #ffffff; --primary-cta-text: #f5f5f5;
--secondary-cta: #1f0a0a; --secondary-cta: #ffffff;
--secondary-cta-text: #ffe6e6; --secondary-cta-text: #1c1c1c;
--accent: #7b2d2d; --accent: #e63946;
--background-accent: #b8111f; --background-accent: #e8bea8;
/* 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);