a06ac39639
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
9 lines
117 B
Go
9 lines
117 B
Go
package colors
|
|
|
|
import "fmt"
|
|
|
|
type Luminance uint8
|
|
|
|
func (l Luminance) Hex() string {
|
|
return fmt.Sprintf("%X", l)
|
|
}
|