Color picker
HEX
Color picker
RGB
Plugin for HEX color
$('#hex').colorPicker({
    callback: (hex, rgb) => {
        $('#hex').val(hex);
    }
});    
Plugin for RGB color
$('#rgb').colorPicker({
    callback: (hex, rgb) => {
        $('#rgb').val(rgb);
    }
});