11 Commits

Author SHA1 Message Date
af07df45ab Update theme colors 2026-05-09 20:39:39 +00:00
5833fa30d5 Update theme colors 2026-05-09 20:39:08 +00:00
bb4074d7a0 Update theme colors 2026-05-09 20:38:51 +00:00
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
121799a9e1 Update theme colors 2026-05-09 20:34:53 +00:00
020501b330 Update theme colors 2026-05-09 20:34:45 +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 { getVisualEditScript } from "@/utils/visual-edit-script";
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 openSans = Open_Sans({
variable: "--font-open-sans",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
@@ -41,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #080200;
--card: #1a0d0b;
--foreground: #ffe6d5;
--primary-cta: #ffaa70;
--primary-cta-text: #080200;
--secondary-cta: #170b07;
--secondary-cta-text: #ffe6d5;
--accent: #7b5e4a;
--background-accent: #b8541e;
--background: #f5f5f5;
--card: #595959;
--foreground: #1c1c1c;
--primary-cta: #511f1f;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffedbe;
--secondary-cta-text: #1c1c1c;
--accent: #e63946;
--background-accent: #e8bea8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);