1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 14:20:42 +00:00
notes/node_modules/stylelint/lib/rules/color-no-invalid-hex/README.md

48 lines
633 B
Markdown
Raw Normal View History

2017-03-09 18:16:08 +00:00
# color-no-invalid-hex
Disallow invalid hex colors.
```css
a { color: #y3 }
/** ↑
* These hex colors */
```
Longhand hex colors can be either 6 or 8 (with alpha channel) hexadecimal characters. And their shorthand variants are 3 and 4 characters respectively.
## Options
### `true`
The following patterns are considered warnings:
```css
a { color: #00; }
```
```css
a { color: #fff1az; }
```
```css
a { color: #12345aa; }
```
The following patterns are *not* considered warnings:
```css
a { color: #000; }
```
```css
a { color: #000f; }
```
```css
a { color: #fff1a0; }
```
```css
a { color: #123450aa; }
```