После некоторого поиска ничего не происходит, и спустя почти 1 год после вашего вопроса, я думаю, что нет другого выбора, кроме ручного кодирования.
Я пришел с этим решением после небольшого взлома farbtastic и colorpicker jquery plugins:
/*
* ColorPicker.
*/
// Utility functions.
function convertHexToRGB(hex) {
var hex = parseInt(((hex.indexOf('#') > -1) ? hex.substring(1) : hex), 16);
return [hex >> 16,(hex & 0x00FF00) >> 8,(hex & 0x0000FF)];
}
function convert_RGB_to_HSL(rgb) {
var min, max, delta, h, s, l;
var r = rgb[0], g = rgb[1], b = rgb[2];
min = Math.min(r, Math.min(g, b));
max = Math.max(r, Math.max(g, b));
delta = max - min;
l = (min + max) / 2;
s = 0;
if (l > 0 && l < 1) {
s = delta / (l < 0.5 ? (2 * l) : (2 - 2 * l));
}
h = 0;
if (delta > 0) {
if (max == r && max != g) h += (g - b) / delta;
if (max == g && max != b) h += (2 + (b - r) / delta);
if (max == b && max != r) h += (4 + (r - g) / delta);
h /= 6;
}
return [h, s, l];
}
$('#footer-text-color-selector').hide();
$.farbtastic('#footer-text-color-selector')
.setColor('#21759B')
.linkTo(function(color){
$('#footer-text-color').css({
'backgroundColor':color,
'color': (convert_RGB_to_HSL(convertHexToRGB(color))[2] > 125) ? '#000' : '#FFF'
});
$('#footer-preview a').css('color', color);
// XXX Any other things-to-do when the input change.
});
// Hide & Show behaviour.
$('#footer-text-color').click(function() {
$('#footer-text-color-selector').fadeIn();
});
$(document).mousedown(function() {
$('#footer-text-color-selector').each(function() {
var display = $(this).css('display');
if ( display == 'block' )
$(this).fadeOut();
});
});
// Initial behaviour.
$('#footer-text-color').css({
'backgroundColor': $('#footer-text-color').val(),
'color': (convert_RGB_to_HSL(convertHexToRGB($('#footer-text-color').val()))[2] > 125) ? '#000' : '#FFF'
});
$('#footer-preview a').css('color', $('#footer-text-color').val());