-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
colors_test.go
161 lines (139 loc) · 4.02 KB
/
colors_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package gamut
import (
"image/color"
"testing"
colorful "github.com/lucasb-eyer/go-colorful"
)
func TestWarmCool(t *testing.T) {
cols := []struct {
hex string
cool bool
}{
{"#2f1b82", true},
{"#ff1b82", false},
}
for _, col := range cols {
c, _ := colorful.Hex(col.hex)
if Warm(c) == col.cool {
t.Errorf("Expected warm for %s to be %t, got %t", col.hex, !col.cool, col.cool)
}
if Cool(c) != col.cool {
t.Errorf("Expected cool for %s to be %t, got %t", col.hex, col.cool, !col.cool)
}
}
}
func TestLightness(t *testing.T) {
cols := []struct {
fn func(color.Color, float64) color.Color
percent float64
hex string
exp string
}{
{Lighter, 0.1, "#2f1b82", "#352087"},
{Lighter, 0.8, "#ea621f", "#ffe49a"},
{Darker, 0.3, "#2f1b82", "#1b0d72"},
{Darker, 0.8, "#ea621f", "#5e0000"},
}
for _, col := range cols {
c, _ := colorful.Hex(col.hex)
cc, _ := colorful.MakeColor(col.fn(c, col.percent))
exp, _ := colorful.Hex(col.exp)
if cc.Hex() != exp.Hex() {
t.Errorf("Expected different color %v, got %v", exp.Hex(), cc.Hex())
}
}
}
func TestComplementary(t *testing.T) {
cols := []struct {
hex string
complementary string
}{
{"#2f1b82", "#6e821b"},
{"#00ffff", "#ff0000"},
}
for _, col := range cols {
c, _ := colorful.Hex(col.hex)
cc, _ := colorful.MakeColor(Complementary(c))
exp, _ := colorful.Hex(col.complementary)
if cc.Hex() != exp.Hex() {
t.Errorf("Expected complementary color %v, got %v", exp.Hex(), cc.Hex())
}
}
}
func TestContrast(t *testing.T) {
cols := []struct {
hex string
contrast string
}{
{"#2f1b82", "#ffffff"},
{"#ff1b82", "#000000"},
}
for _, col := range cols {
c, _ := colorful.Hex(col.hex)
cc, _ := colorful.MakeColor(Contrast(c))
exp, _ := colorful.Hex(col.contrast)
if cc.Hex() != exp.Hex() {
t.Errorf("Expected contrast color %v, got %v", exp.Hex(), cc.Hex())
}
}
}
func TestHueOffsets(t *testing.T) {
cols := []struct {
fn func(color.Color) []color.Color
hex string
exp []string
}{
{Triadic, "#2f1b82", []string{"#1b822f", "#822f1b"}},
{Quadratic, "#2f1b82", []string{"#1b8262", "#6e821b", "#821b3b"}},
{Analogous, "#2f1b82", []string{"#1b3b82", "#621b82"}},
{SplitComplementary, "#2f1b82", []string{"#82631b", "#3a821b"}},
}
for coli, col := range cols {
cc := col.fn(Hex(col.hex))
for i := 0; i < len(col.exp); i++ {
colc, _ := colorful.MakeColor(cc[i])
expc, _ := colorful.Hex(col.exp[i])
if expc.Hex() != colc.Hex() {
t.Errorf("Expected offset color %v, got %v (iteration %d)", expc.Hex(), colc.Hex(), coli)
}
}
}
}
func TestLightnessOffsets(t *testing.T) {
cols := []struct {
fn func(color.Color, int) []color.Color
count int
hex string
exp []string
}{
{Monochromatic, 8, "#2f1b82", []string{"#110a2f", "#22135e", "#331d8d", "#4427bc", "#6043d8", "#8872e2", "#b0a1ec", "#d7d0f5"}},
{Shades, 8, "#2f1b82", []string{"#2c1973", "#291864", "#251656", "#211447", "#1d123a", "#190f2d", "#150b20", "#0c0514"}},
{Tints, 8, "#2f1b82", []string{"#4b3290", "#634a9e", "#7a62ac", "#917ab9", "#a794c7", "#bdaed5", "#d3c8e3", "#e9e3f1"}},
{Tones, 8, "#2f1b82", []string{"#3d2782", "#483282", "#523d82", "#5b4882", "#635382", "#6b5e82", "#726981", "#797480"}},
}
for coli, col := range cols {
cc := col.fn(Hex(col.hex), col.count)
for i := 0; i < len(col.exp); i++ {
colc, _ := colorful.MakeColor(cc[i])
expc, _ := colorful.Hex(col.exp[i])
if expc.Hex() != colc.Hex() {
t.Errorf("Expected offset color %v, got %v (iteration %d)", expc.Hex(), colc.Hex(), coli)
}
}
}
}
func TestTetradic(t *testing.T) {
c1, _ := colorful.Hex("#2f1b82")
c2 := HueOffset(c1, 60)
exp1, _ := colorful.Hex("#6e821b")
exp2, _ := colorful.Hex("#1b822f")
tc := Tetradic(c1, c2)
t1, _ := colorful.MakeColor(tc[0])
t2, _ := colorful.MakeColor(tc[1])
if t1.Hex() != exp1.Hex() {
t.Errorf("Expected first tetradic color %v, got %v", exp1.Hex(), t1.Hex())
}
if t2.Hex() != exp2.Hex() {
t.Errorf("Expected second tetradic color %v, got %v", exp2.Hex(), t2.Hex())
}
}