(r, g, b, a uint8)
| 475 | type Color []uint8 |
| 476 | |
| 477 | func NewColor(r, g, b, a uint8) Color { |
| 478 | return Color{r, g, b, a} |
| 479 | } |
| 480 | |
| 481 | // Cribbed from: https://github.com/lucasb-eyer/go-colorful/blob/master/colors.go |
| 482 | // h is hue |
no outgoing calls
no test coverage detected