Tweak colors

This commit is contained in:
Eric Bailey
2025-08-06 16:31:43 -05:00
parent 909ddc86e1
commit 921f2de10b
+10 -6
View File
@@ -104,13 +104,17 @@ function useToastStyles({type}: {type: ToastType}) {
},
error: {
backgroundColor: t.palette.negative_25,
borderColor: select(t.name, {
light: t.palette.negative_300,
dim: t.palette.negative_300,
dark: t.palette.negative_300,
borderColor: t.palette.negative_300,
iconColor: select(t.name, {
light: t.palette.negative_700,
dim: t.palette.negative_900,
dark: t.palette.negative_800,
}),
textColor: select(t.name, {
light: t.palette.negative_700,
dim: t.palette.negative_900,
dark: t.palette.negative_800,
}),
iconColor: t.palette.negative_600,
textColor: t.palette.negative_600,
},
warning: {
backgroundColor: t.atoms.bg_contrast_25.backgroundColor,