(String hexColor)
| 183 | } |
| 184 | |
| 185 | public static int getBlue(String hexColor) { |
| 186 | return decode(hexColor, Color.black).getBlue(); |
| 187 | } |
| 188 | |
| 189 | /** Converts a hex color (e.g., "ffff00") into "red", "green", "yellow", etc. |
| 190 | * Returns null if the hex color does not have a name. |
no test coverage detected