Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 447 Bytes

color-hex-case.md

File metadata and controls

27 lines (17 loc) · 447 Bytes

Pattern: Inconsistent hex color

Issue: -

Description

Specify lowercase or uppercase for hex colors.

Examples

lower

a { color: #fff; } // ✓ ok
a { color: #FFF; } // ✗ error

upper

a { color: #FFF; } // ✓ ok
a { color: #fff; } // ✗ error

Further Reading