From 931d4a16fd5ef9c2bc5c2eeda33cd074862e0783 Mon Sep 17 00:00:00 2001 From: thesn10 <38666407+thesn10@users.noreply.github.com> Date: Thu, 2 Jul 2026 22:16:37 +0200 Subject: [PATCH] Add prototype theme colors --- app/src/global.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/src/global.css b/app/src/global.css index 86dead2..d118bf4 100644 --- a/app/src/global.css +++ b/app/src/global.css @@ -6,3 +6,27 @@ /* End-user path: heroui-native lives in the project's node_modules, one level up from this src/global.css file. */ @source '../node_modules/heroui-native/lib'; + +@layer theme { + @variant light { + --background: #f7f6fb; + --surface: #ffffff; + --surface-secondary: #f0eef8; + --accent: #7a34d4; + --accent-foreground: #ffffff; + --success: #059669; + --warning: #d97706; + --danger: #dc2626; + } + + @variant dark { + --background: #0e0e1c; + --surface: #171730; + --surface-secondary: #1e1e3c; + --accent: #b060ff; + --accent-foreground: #ffffff; + --success: #14f195; + --warning: #f5a623; + --danger: #ff4d4f; + } +}