.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / color-no-invalid-hex / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-no-invalid-hex/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-no-invalid-hex/README.md
new file mode 100644 (file)
index 0000000..06460e9
--- /dev/null
@@ -0,0 +1,47 @@
+# 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 violations:
+
+```css
+a { color: #00; }
+```
+
+```css
+a { color: #fff1az; }
+```
+
+```css
+a { color: #12345aa; }
+```
+
+The following patterns are *not* considered violations:
+
+```css
+a { color: #000; }
+```
+
+```css
+a { color: #000f; }
+```
+
+```css
+a { color: #fff1a0; }
+```
+
+```css
+a { color: #123450aa; }
+```