11 Commits

Author SHA1 Message Date
c24707c2ee Update theme colors 2026-05-09 20:42:57 +00:00
c4803836fb Update theme colors 2026-05-09 20:42:26 +00:00
01347de9ad Update theme colors 2026-05-09 20:41:53 +00:00
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
3 changed files with 16 additions and 16 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: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #341f51;
--background: #000000;
--card: #993a3a;
--foreground: #c7c7c7;
--primary-cta: #511f1f;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta: #ffedbe;
--secondary-cta-text: #1c1c1c;
--accent: #6139e6;
--background-accent: #b3a8e8;
--accent: #e63946;
--background-accent: #e8bea8;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);