Sha256: 5c6ee287169adc4c277020ae2b650daaafd0edd39eb0f627163421e3ea8b7ee4
Contents?: true
Size: 911 Bytes
Versions: 24
Compression:
Stored size: 911 Bytes
Contents
# color-hex-case Specify lowercase or uppercase for hex colors. <!-- prettier-ignore --> ```css a { color: #fff } /** ↑ * This hex color */ ``` The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule. ## Options `string`: `"lower"|"upper"` ### `"lower"` The following patterns are considered violations: <!-- prettier-ignore --> ```css a { color: #FFF; } ``` The following patterns are _not_ considered violations: <!-- prettier-ignore --> ```css a { color: #000; } ``` <!-- prettier-ignore --> ```css a { color: #fff; } ``` ### `"upper"` The following patterns are considered violations: <!-- prettier-ignore --> ```css a { color: #fff; } ``` The following patterns are _not_ considered violations: <!-- prettier-ignore --> ```css a { color: #000; } ``` <!-- prettier-ignore --> ```css a { color: #FFF; } ```
Version data entries
24 entries across 24 versions & 1 rubygems