package convert import ( "fmt" "testing" ) func TestConv_ColorHexToRGB(t *testing.T) { fmt.Println(conv.ColorHexToRGB("#ff0000")) } func TestConv_ColorRGBToHex(t *testing.T) { fmt.Println(conv.ColorRGBToHex(255, 0, 0)) }