diff --git a/src/app/globals.css b/src/app/globals.css index ae1b8dd..697735e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -7,6 +7,8 @@ --foreground: #171717; --base: #f5f5f5; --offbase: #dbdbdb; + --accent: #ef4444; + --muted: #737373; } @media (prefers-color-scheme: dark) { @@ -15,6 +17,8 @@ --foreground: #ededed; --base: #333333; --offbase: #4a4a4a; + --accent: #f87171; + --muted: #a3a3a3; } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 60c9e34..6d67d8a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -28,7 +28,15 @@ export default function RootLayout({
-