Added HSL and HSV colors

This commit is contained in:
2025-03-11 14:24:41 +01:00
parent 1b0b4cb28f
commit f75ff8da5a
14 changed files with 153 additions and 48 deletions

26
HSV_test.go Normal file
View File

@ -0,0 +1,26 @@
package color_test
import (
"fmt"
"testing"
"git.urbach.dev/go/color"
)
func TestHSVSpectrum(t *testing.T) {
color.Terminal = true
color.TrueColor = true
for value := range 21 {
for hue := range 80 {
h := color.Value(hue) * 4.4
s := color.Value(1.0)
v := color.Value(value) * 0.05
c := color.HSV(h, s, v)
c.Print("█")
}
fmt.Println()
}
}