| 1 | import Colors from "./enum"; |
| 2 | |
| 3 | interface ColorClass { |
| 4 | text: string; |
| 5 | background: string; |
| 6 | ring: string; |
| 7 | } |
| 8 | |
| 9 | export const ColorMap: Record<string, ColorClass> = { |
| 10 | [Colors.BLUE]: { |
nothing calls this directly
no outgoing calls
no test coverage detected