From 6cc5e5e931fb5d8153cac5e5bd55d1a2f0a50ab0 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Fri, 23 Jan 2026 22:59:44 +0700 Subject: [PATCH] chore: adjust color variable and add shadow-button-soft custom shadow --- src/app/globals.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index eda1deab..0eb04a09 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,5 +1,6 @@ @import 'tailwindcss'; @plugin "daisyui"; +@import '../styles/tailwind.css'; @import '../styles/daisyui.css'; @import '../figma-make/styles/theme.css'; @@ -34,11 +35,11 @@ /* Status/Utility Colors */ --color-info: oklch(67.4% 0.176 238.9); --color-info-content: oklch(0% 0 0); /* #000000 */ - --color-success: oklch(62.3% 0.147 149); + --color-success: #00d390; --color-success-content: oklch(100% 0 0); /* #ffffff */ --color-warning: oklch(82.2% 0.165 91.9); --color-warning-content: oklch(0% 0 0); /* #000000 */ - --color-error: oklch(61.8% 0.203 27.8); + --color-error: #ff3a3a; --color-error-content: oklch(100% 0 0); /* #fffffff */ --radius-selector: 0rem; @@ -52,7 +53,7 @@ } :root { - --color-primary: #1f74bf; + --color-primary: #0069e0; } @theme { @@ -64,6 +65,9 @@ --container-lg: 64rem; --container-xl: 80rem; --container-2xl: 96rem; + + --shadow-button-soft: + 0 3px 2px -2px var(--color-base-200), 0 4px 3px -2px var(--color-base-200); } html {