Performance: Square bracket notation for custom values
MEDIUM IMPACT
This affects CSS bundle size and rendering speed by allowing custom values without extending the config, impacting initial load and style calculation.
class="bg-[#123456]"class="bg-[#1234567890abcdef]"| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using many unique long custom values with square brackets | No extra DOM nodes | 0 reflows | High paint cost due to large CSS | [X] Bad |
| Using short custom values sparingly with square brackets | No extra DOM nodes | 0 reflows | Moderate paint cost | [!] OK |
| Using config-extended custom values instead of square brackets | No extra DOM nodes | 0 reflows | Low paint cost | [OK] Good |