(entity: any)
| 383 | const colorEq = lower.match(/^(?:bg|color|background)[=:](.+)$/i); |
| 384 | if (colorEq) { |
| 385 | out.backgroundColor = normalizeColorToken(colorEq[1]); |
| 386 | out.color = out.backgroundColor; |
| 387 | continue; |
| 388 | } |
| 389 | if (lower === "bg" || lower === "color" || lower === "background") { |
| 390 | const next = args[i + 1]; |
| 391 | if (next && isColorToken(next)) { |
| 392 | out.backgroundColor = normalizeColorToken(next); |
no outgoing calls
no test coverage detected