Skip to content

component/color

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

color

RGBA / HSLA color manipulation

Installation

$ component install component/color

API

.rgba(r, g, b, a)

Return an RGBA object.

.hsla(h, s, l, a)

Return an HSLA object.

.RGBA(r, g, b, a)

The RGBA constructor.

.HSLA(h, s, l, a)

The HSLA constructor.

RGBA#toRGBA()

Returns itself.

HSLA#toRGBA()

Return the RGBA representation.

RGBA#toHSLA()

Return the HSLA representation.

HSLA#toHSLA()

Returns itself.

RGBA#toString()

Return the string representation, for example "#f00", or "rgba(255,0,0,.5)".

HSLA#toString()

Return the string representation, for example "hsla(0,100,50,1)".

License

MIT