(String hexColor)
| 179 | } |
| 180 | |
| 181 | public static int getGreen(String hexColor) { |
| 182 | return decode(hexColor, Color.black).getGreen(); |
| 183 | } |
| 184 | |
| 185 | public static int getBlue(String hexColor) { |
| 186 | return decode(hexColor, Color.black).getBlue(); |
no test coverage detected