Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « components « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e8199c1bcddd3e428a7e9fe2faf22800d82ba7d (plain)
1
2
3
4
5
6
7
8
export const SEVERITY_CLASS_NAME_MAP = {
  critical: 'gl-text-red-800',
  high: 'gl-text-red-600',
  medium: 'gl-text-orange-400',
  low: 'gl-text-orange-300',
  info: 'gl-text-blue-400',
  unknown: 'gl-text-gray-400',
};