Sha256: ce7bfc7ee8f134e5c0a1f4a3d6edb6138b72a58963e0385fde5356dfbd5a4fca

Contents?: true

Size: 1.07 KB

Versions: 24

Compression:

Stored size: 1.07 KB

Contents

# color-hex-length

Specify short or long notation 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`: `"short"|"long"`

### `"short"`

The following patterns are considered violations:

<!-- prettier-ignore -->
```css
a { color: #ffffff; }
```

<!-- prettier-ignore -->
```css
a { color: #ffffffaa; }
```

The following patterns are _not_ considered violations:

<!-- prettier-ignore -->
```css
a { color: #fff; }
```

<!-- prettier-ignore -->
```css
a { color: #fffa; }
```

<!-- prettier-ignore -->
```css
a { color: #a4a4a4; }
```

### `"long"`

The following patterns are considered violations:

<!-- prettier-ignore -->
```css
a { color: #fff; }
```

<!-- prettier-ignore -->
```css
a { color: #fffa; }
```

The following patterns are _not_ considered violations:

<!-- prettier-ignore -->
```css
a { color: #ffffff; }
```

<!-- prettier-ignore -->
```css
a { color: #ffffffaa; }
```

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
trusty-cms-6.3.1 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.7 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.6 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.5 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.4 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.3 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.2 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.1 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3.5 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-5.0.0 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3.4 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3.3 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3.2 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3.1 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.3 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.2.3 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.2.2 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.2.1 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.2 node_modules/stylelint/lib/rules/color-hex-length/README.md
trusty-cms-4.1.9 node_modules/stylelint/lib/rules/color-hex-length/README.md