summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/security_reports/components/constants.js
blob: 9b1cbfe218bd8c191ba20ac67809587b6cade2c6 (plain)
1
2
3
4
5
6
7
8
export const SEVERITY_CLASS_NAME_MAP = {
  critical: 'text-danger-800',
  high: 'text-danger-600',
  medium: 'text-warning-400',
  low: 'text-warning-200',
  info: 'text-primary-400',
  unknown: 'text-secondary-400',
};