Performance: Color utilities (text, background)
MEDIUM IMPACT
This affects page rendering speed and visual stability by controlling how colors are applied and repainted on the page.
<div class="text-danger bg-warning">Hello</div>
<div style="color: red; background-color: yellow;">Hello</div>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Inline styles for colors | None | 0 | High (many repaints if used often) | [X] Bad |
| Bootstrap color utility classes | None | 0 | Low (cached styles, minimal repaint) | [OK] Good |