#697 proposes single and double character hex color support (eg: #E would convert to #EEEEEE).
In the spirit of this, I'm proposing support for alpha hex support.
#FF000080
The extra two hex digits at the end would represent the alpha/opacity. LESS could convert this to:
rgba(255, 0, 0, 0.5)
Producing a pure red with 50% opacity.
#697 proposes single and double character hex color support (eg:
#Ewould convert to#EEEEEE).In the spirit of this, I'm proposing support for alpha hex support.
#FF000080The extra two hex digits at the end would represent the alpha/opacity. LESS could convert this to:
rgba(255, 0, 0, 0.5)Producing a pure red with 50% opacity.