5 Commits

Author SHA1 Message Date
165099e05d Merge version_2 into main
Merge version_2 into main
2026-06-01 05:03:58 +00:00
9a037f5a5e Update theme fonts 2026-06-01 05:03:55 +00:00
be478936ff Update theme fonts 2026-06-01 05:03:55 +00:00
e1d5d7a9d1 Merge version_2 into main
Merge version_2 into main
2026-06-01 05:03:24 +00:00
5534c16671 Update theme colors 2026-06-01 05:03:18 +00:00
3 changed files with 9 additions and 6 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 { Archivo } from "next/font/google";
import { Inter_Tight } from "next/font/google";
@@ -41,9 +42,11 @@ export const metadata: Metadata = {
},
};
const archivo = Archivo({
variable: "--font-archivo",
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -54,7 +57,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body className={`${interTight.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-inter-tight), 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-inter-tight), sans-serif;
}

View File

@@ -10,7 +10,7 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fbfaff;
--background: #7a5272;
--card: #f7f5ff;
--foreground: #0f0022;
--primary-cta: #8b5cf6;