11 Commits

Author SHA1 Message Date
1ba5d2f0e8 Merge version_3 into main
Merge version_3 into main
2026-05-08 16:59:18 +00:00
6ac2e24aca Update theme colors 2026-05-08 16:59:15 +00:00
151a16d4ec Merge version_2 into main
Merge version_2 into main
2026-05-08 16:57:53 +00:00
18fd04f1a2 Update theme fonts 2026-05-08 16:57:47 +00:00
d909235e0a Update theme fonts 2026-05-08 16:57:46 +00:00
b92a5ad08f Merge version_2 into main
Merge version_2 into main
2026-05-08 16:53:03 +00:00
e2966b7b18 Update theme fonts 2026-05-08 16:52:57 +00:00
eb391a7464 Update theme fonts 2026-05-08 16:52:56 +00:00
6d3c3167a0 Merge version_2 into main
Merge version_2 into main
2026-05-08 16:52:41 +00:00
0402b67561 Update theme colors 2026-05-08 16:52:38 +00:00
ff8717d782 Merge version_1 into main
Merge version_1 into main
2026-05-08 16:51:01 +00:00
3 changed files with 17 additions and 14 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 { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -20,8 +21,10 @@ export const metadata: Metadata = {
},
};
const openSans = Open_Sans({
variable: "--font-open-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${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-open-sans), 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-open-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #000000;
--card: #0a0a0a;
--foreground: #ffffff;
--primary-cta: #ffffff;
--primary-cta-text: #000000;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #333333;
--background-accent: #1a1a1a;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);