func (i IsHexcolorChecker) IsFormat(data string) bool {
	return govalidator.IsHexcolor(data)
}
func (s *service) IsHexcolor(str string) bool                { return gov.IsHexcolor(str) }