From 840e2aad2f5347ef8e82e616cf177b23a376ddff Mon Sep 17 00:00:00 2001 From: mrevanzak Date: Mon, 6 May 2024 15:34:23 +0700 Subject: [PATCH] feat(ui): color styling --- packages/ui/src/toast.tsx | 2 +- packages/ui/tailwind.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/toast.tsx b/packages/ui/src/toast.tsx index 2958b9a..1fa9248 100644 --- a/packages/ui/src/toast.tsx +++ b/packages/ui/src/toast.tsx @@ -15,7 +15,7 @@ const Toaster = ({ ...props }: ToasterProps) => { toastOptions={{ classNames: { toast: - "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg", + "group toast group-[.toaster]:bg-secondary-its dark:group-[.toaster]:bg-primary-its group-[.toaster]:text-white group-[.toaster]:border-border group-[.toaster]:shadow-lg", description: "group-[.toast]:text-muted-foreground", actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground", diff --git a/packages/ui/tailwind.config.ts b/packages/ui/tailwind.config.ts index ed091ed..0abd748 100644 --- a/packages/ui/tailwind.config.ts +++ b/packages/ui/tailwind.config.ts @@ -31,7 +31,7 @@ export default { }, primary: { DEFAULT: "hsl(var(--primary-its))", - foreground: "hsl(var(--primary-foreground))", + foreground: "hsl(0 0% 98%)", }, secondary: { DEFAULT: "hsl(var(--secondary-its))",