(color: string, textColor: string)
| 85 | } |
| 86 | |
| 87 | function getLabelStyles(color: string, textColor: string) { |
| 88 | return `background-color: ${color}; color: white; border: 4px solid ${color}; color: ${textColor};`; |
| 89 | } |
| 90 | |
| 91 | function getColorForLevel(level: DebugLevel): string { |
| 92 | switch (level) { |