| 1 | export interface RiskLevelColors { |
| 2 | riskFloor: number; // How low the risk needs to be for this level to be applicable |
| 3 | |
| 4 | backgroundColor: string; // Background color for the risk level |
| 5 | hoveredBackgroundColor: string; // Background color for the risk level when hovered |
| 6 | textColor: string; // Text color for the risk level |
| 7 | ringColor: string; // Ring color for the risk level |
| 8 | shadowColor: string; // Shadow color for the risk level |
| 9 | |
| 10 | fillColor: string; // Fill color for the risk level |
| 11 | strokeColor: string; // Stroke color for the risk level |
| 12 | } |
| 13 | |
| 14 | const LOW: RiskLevelColors = { |
| 15 | riskFloor: 0, |
nothing calls this directly
no outgoing calls
no test coverage detected