You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
310 B
17 lines
310 B
package color
|
|
|
|
import "github.com/lucasb-eyer/go-colorful"
|
|
|
|
type HueSat struct {
|
|
Hue float64 `json:"hue"`
|
|
Sat float64 `json:"sat"`
|
|
}
|
|
|
|
func (hs HueSat) ToXY() XY {
|
|
return hs.ToRGB().ToXY()
|
|
}
|
|
|
|
func (hs HueSat) ToRGB() RGB {
|
|
c := colorful.Hsv(hs.Hue, hs.Sat, 1)
|
|
return RGB{Red: c.R, Green: c.G, Blue: c.B}
|
|
}
|