diff --git a/src/AlertCard/AlertCard.tsx b/src/AlertCard/AlertCard.tsx index 7317f860..885b7de2 100644 --- a/src/AlertCard/AlertCard.tsx +++ b/src/AlertCard/AlertCard.tsx @@ -143,7 +143,12 @@ export const AlertCard: React.FC = ({ borderStyle: "solid", borderRadius: 4, borderWidth: 1, - borderColor: colors.silver.dark, + borderColor: + theme === "light" + ? colors.silver.dark + : theme === "dark" + ? colors.midnight.dark + : assertUnreachable(theme), padding: 15, }), otherProps.className,