MCPcopy Create free account
hub / github.com/WardAnalytics/WardGraph / RiskLevelColors

Interface RiskLevelColors

src/utils/risk_levels.tsx:1–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export 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
14const LOW: RiskLevelColors = {
15 riskFloor: 0,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected