Files
houston-be/common/util/common_util.go

15 lines
203 B
Go
Raw Normal View History

2023-04-10 17:30:28 +05:30
package util
func GetColorBySeverity(severityId uint) string {
switch severityId {
case 1:
return "#fc3838"
case 2:
return "#fc9338"
case 3:
return "#ebfa1b"
default:
return "#7288db"
}
}