9 Commits

Author SHA1 Message Date
07a0e474e3 Merge version_4 into main
Merge version_4 into main
2026-04-24 09:23:54 +00:00
769e4ca3d4 Update theme fonts 2026-04-24 09:23:51 +00:00
3be6cfee81 Update theme fonts 2026-04-24 09:23:51 +00:00
0c4d2e4f7f Merge version_4 into main
Merge version_4 into main
2026-04-24 09:21:29 +00:00
23a7bc26d2 Update theme colors 2026-04-24 09:21:26 +00:00
8cf400b06c Merge version_3 into main
Merge version_3 into main
2026-04-24 09:21:14 +00:00
885afab689 Merge version_3 into main
Merge version_3 into main
2026-04-24 09:21:03 +00:00
e78692b499 Merge version_3 into main
Merge version_3 into main
2026-04-24 09:20:44 +00:00
7c59390b71 Merge version_2 into main
Merge version_2 into main
2026-04-24 09:17:32 +00:00
3 changed files with 11 additions and 10 deletions

View File

@@ -30,12 +30,13 @@ export const metadata: Metadata = {
const manrope = Manrope({
variable: "--font-manrope",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -47,7 +48,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;