3 Commits

Author SHA1 Message Date
349c115e89 Update theme fonts 2026-04-22 12:13:45 +00:00
809ccc9193 Update theme fonts 2026-04-22 12:13:44 +00:00
ea860cdf50 Update theme colors 2026-04-22 12:08:47 +00:00
3 changed files with 8 additions and 6 deletions

View File

@@ -30,9 +30,11 @@ export const metadata: Metadata = {
const publicSans = Public_Sans({
variable: "--font-public-sans", const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -43,7 +45,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}> <body className={`${poppins.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-public-sans), sans-serif; font-family: var(--font-poppins), 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-public-sans), sans-serif; font-family: var(--font-poppins), sans-serif;
} }

View File

@@ -10,7 +10,7 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #010912; --background: #011012;
--card: #152840; --card: #152840;
--foreground: #e6f0ff; --foreground: #e6f0ff;
--primary-cta: #cee7ff; --primary-cta: #cee7ff;