Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 320 Bytes

color-no-hex.md

File metadata and controls

19 lines (11 loc) · 320 Bytes

Pattern: Use of hex color

Issue: -

Description

Disallow the usage of hex colors.

Examples

a { color: #fff; } // ✗ avoid

a { color: red; } // ✓ ok

Further Reading