diff --git a/src/app/globals.css b/src/app/globals.css index d95926b..5d5056a 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #fcfcff;; - --card: #fafaff;; - --foreground: #150022;; - --primary-cta: #7c3aed;; - --secondary-cta: #ffffff;; - --accent: #cfc2f0;; - --background-accent: #ba9bf1;; + --background: #0a0a0a;; + --card: #1a1a1a;; + --foreground: #ffffffe6;; + --primary-cta: #fbbf24;; + --secondary-cta: #1a1a1a;; + --accent: #d97706;; + --background-accent: #d97706;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); diff --git a/src/app/page.tsx b/src/app/page.tsx index 6aee8c2..c5af017 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';