Gateprep / frontend /src /components /shared /alertStyles.js
banu4prasad's picture
fix: shadcn color token cleanup
be8595f
Raw
History Blame Contribute Delete
429 Bytes
export const ALERT_STYLE = {
success: 'px-3 py-2 rounded-lg bg-green-500/10 border border-green-500/20 text-success-text text-sm',
error: 'px-3 py-2 rounded-lg bg-red-500/10 border border-red-500/20 text-danger-text text-sm',
warning: 'px-3 py-2 rounded-lg bg-amber-500/10 border border-amber-500/20 text-warning-text text-sm',
info: 'px-3 py-2 rounded-lg bg-sky-500/10 border border-sky-500/20 text-info-text text-sm'
}