Performance: Default color palette and shades
MEDIUM IMPACT
This affects page load speed and rendering performance by controlling CSS size and paint complexity.
class="bg-gray-900 text-gray-50" /* Tailwind default palette classes */
button { background-color: #1a202c; color: #f7fafc; } /* custom hex colors everywhere */| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Custom hex colors everywhere | Low | 0 | High due to many unique colors | [X] Bad |
| Tailwind default color classes | Low | 0 | Low due to reused styles | [OK] Good |