File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,13 @@ func matchColorFromHSL(hsl HSLComponents) Color {
164
164
} else {
165
165
return Orange
166
166
}
167
- } else if h >= 36 && h <= 59 {
167
+ } else if h >= 36 && h <= 64 {
168
168
if s < 90 {
169
169
return Yellow // ("Brown")
170
170
} else {
171
171
return Yellow
172
172
}
173
- } else if h >= 60 && h <= 165 {
173
+ } else if h >= 65 && h <= 165 {
174
174
return Green
175
175
} else if h >= 166 && h <= 199 {
176
176
return LightBlue
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ func TestPremierLeague_ArsenalAlt(t *testing.T) {
124
124
}
125
125
126
126
func TestPremierLeague_Aston (t * testing.T ) {
127
- testPremierLeague (t , "#7A003C" , munsell .Purple ) // FIXME:
127
+ testPremierLeague (t , "#7A003C" , munsell .Purple )
128
128
}
129
129
130
130
func TestPremierLeague_AstonAlt (t * testing.T ) {
@@ -148,7 +148,7 @@ func TestPremierLeague_BrightonAlt(t *testing.T) {
148
148
}
149
149
150
150
func TestPremierLeague_Burnley (t * testing.T ) {
151
- testPremierLeague (t , "#53162F" , munsell .Purple ) // FIXME:
151
+ testPremierLeague (t , "#53162F" , munsell .Purple )
152
152
}
153
153
154
154
func TestPremierLeague_BurnleyAlt (t * testing.T ) {
@@ -260,7 +260,7 @@ func TestPremierLeague_WatfordAlt(t *testing.T) {
260
260
}
261
261
262
262
func TestPremierLeague_WestHam (t * testing.T ) {
263
- testPremierLeague (t , "#7A003C" , munsell .Purple ) // FIXME:
263
+ testPremierLeague (t , "#7A003C" , munsell .Purple )
264
264
}
265
265
266
266
func TestPremierLeague_WestHamAlt (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments