Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
/**
* Convert the color value to hex
* @param color
* @return hex string
*/
public static String colorToHex(int color) {
return String.format("#%06X", (0xFFFFFF & color));
}
}