Go color manipulation, conversion and printing library/utility
this library is currently in development, not all color types such as HSL, HSV and CMYK will be included in the first release; pull requests are welcome.
Use go get.
go get github.com/go-playground/colors
Then import the validator package into your own code.
import "github.com/go-playground/colors"
#Example
hex, err := colors.ParseHEX("#fff")
rgb, err := colors.ParseRGB("rgb(0,0,0)")
rgb, err := colors.RGB(0,0,0)
rgba, err := colors.ParseRGBA("rgba(0,0,0,1)")
rgba, err := colors.RGBA(0,0,0,1)
// don't know which color, it was user selectable
color, err := colors.Parse("#000")
color.ToRGB() // rgb(0,0,0)
color.ToRGBA() // rgba(0,0,0,1)
color.ToHEX() // #000000
color.IsLight() // false
color.IsDark() // true
Make a pull request...
Distributed under MIT License, please see license file in code for more details.