(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestLabelRGBAReverse(t *testing.T) { |
| 24 | rgba := Label("tset").Color() |
| 25 | expected := LabelColor{R: 63, G: 81, B: 181, A: 255} |
| 26 | |
| 27 | require.Equal(t, expected, rgba) |
| 28 | } |
| 29 | |
| 30 | func TestLabelRGBAEqual(t *testing.T) { |
| 31 | color1 := Label("test").Color() |