(icon: StyleableIcon)
| 35 | * Jira, Salesforce, Google Calendar) ignore it and keep their own colors. |
| 36 | */ |
| 37 | export function getBareIconStyle(icon: StyleableIcon): CSSProperties | undefined { |
| 38 | const color = getIconColorMap().get(icon) |
| 39 | return color ? { color } : undefined |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Brightness above which a brand tile is "clearly light" and a white foreground |
no test coverage detected