bgrins / TinyColor

Fast, small color manipulation and conversion for JavaScript

Home Page:https://bgrins.github.io/TinyColor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature: include alpha in Hex

itta611 opened this issue · comments

Modern browsers allow to contain alpha values in Hex. (Ex. rgba(0, 0, 0, 0.5) = #00000080)
However,

tinycolor('rgba(0, 0, 0, 0.3)').toHex()

will be #000000.

There is a toHex8 for that already.

thanks.