refactor: change color name error to danger

This commit is contained in:
p-sw 2024-05-28 21:20:51 +09:00
parent d0fca46918
commit a5a371e35d

View File

@ -9,7 +9,7 @@ const colors = {
default: "border-neutral-300 dark:border-neutral-700", default: "border-neutral-300 dark:border-neutral-700",
success: "border-green-400 dark:border-green-600", success: "border-green-400 dark:border-green-600",
warning: "border-yellow-400 dark:border-yellow-600", warning: "border-yellow-400 dark:border-yellow-600",
error: "border-red-400 dark:border-red-600", danger: "border-red-400 dark:border-red-600",
}, },
background: { background: {
default: default:
@ -20,7 +20,7 @@ const colors = {
"bg-green-100 dark:bg-green-900 hover:bg-green-200 dark:hover:bg-green-800", "bg-green-100 dark:bg-green-900 hover:bg-green-200 dark:hover:bg-green-800",
warning: warning:
"bg-yellow-100 dark:bg-yellow-900 hover:bg-yellow-200 dark:hover:bg-yellow-800", "bg-yellow-100 dark:bg-yellow-900 hover:bg-yellow-200 dark:hover:bg-yellow-800",
error: "bg-red-100 dark:bg-red-900 hover:bg-red-200 dark:hover:bg-red-800", danger: "bg-red-100 dark:bg-red-900 hover:bg-red-200 dark:hover:bg-red-800",
}, },
underline: "decoration-black dark:decoration-white", underline: "decoration-black dark:decoration-white",
}; };
@ -39,14 +39,14 @@ const [buttonVariants, resolveVariants] = vcn({
solid: `border ${colors.border.default}`, solid: `border ${colors.border.default}`,
success: `border ${colors.border.success}`, success: `border ${colors.border.success}`,
warning: `border ${colors.border.warning}`, warning: `border ${colors.border.warning}`,
error: `border ${colors.border.error}`, danger: `border ${colors.border.danger}`,
}, },
background: { background: {
default: colors.background.default, default: colors.background.default,
ghost: colors.background.ghost, ghost: colors.background.ghost,
success: colors.background.success, success: colors.background.success,
warning: colors.background.warning, warning: colors.background.warning,
error: colors.background.error, danger: colors.background.danger,
transparent: "bg-transparent hover:bg-transparent", transparent: "bg-transparent hover:bg-transparent",
}, },
decoration: { decoration: {