Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 297 Bytes

rgba-hex-color-only.md

File metadata and controls

15 lines (11 loc) · 297 Bytes

rgba Hex Color Only

Prevents use rgba function with non-hex color as a first argument.

Example of disallowed code when the rule is enabled:

.color {
  color: rgba(0, 0, 0, .4);
}

.bg {
  background: linear-gradient(to right, rgba(0, 0, 0, .4), rgba(100, 100, 100, 0));
}