13 Commits

Author SHA1 Message Date
48073c0c1d Merge version_4 into main
Merge version_4 into main
2026-04-22 03:18:59 +00:00
7127498617 Update theme fonts 2026-04-22 03:18:56 +00:00
7e4cb8925b Update theme fonts 2026-04-22 03:18:56 +00:00
e5a625f036 Merge version_4 into main
Merge version_4 into main
2026-04-22 03:18:55 +00:00
5a5b5d88ad Update theme fonts 2026-04-22 03:18:52 +00:00
0f492653a6 Update theme fonts 2026-04-22 03:18:52 +00:00
9105579421 Merge version_4 into main
Merge version_4 into main
2026-04-22 03:18:36 +00:00
1a6be96774 Update theme colors 2026-04-22 03:18:33 +00:00
93b495f398 Merge version_3 into main
Merge version_3 into main
2026-04-22 03:18:31 +00:00
aeb4a05df1 Update theme colors 2026-04-22 03:18:28 +00:00
faa54f5725 Merge version_2 into main
Merge version_2 into main
2026-04-22 03:18:27 +00:00
634a98ebe7 Update theme colors 2026-04-22 03:18:24 +00:00
2d13fabcf1 Merge version_1 into main
Merge version_1 into main
2026-04-22 03:16:25 +00:00
3 changed files with 18 additions and 14 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 { Archivo } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -20,8 +22,10 @@ export const metadata: Metadata = {
},
};
const archivo = Archivo({
variable: "--font-archivo",
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
@@ -33,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #0c1325;
--primary-cta: #0798ff;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #0c1325;
--accent: #93c7ff;
--background-accent: #a8cde8;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);