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 Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google"; 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"], subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -54,7 +57,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${archivo.variable} antialiased`}> <body className={`${interTight.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

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

View File

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