﻿
$(document).ready(function() {
    //alert("hello");

});
function ShowDetails(PalleteName, Description, PantoneName, CMYKColors, RGBColors, HEXColors) {
    $('#ColorSample').css({ 'background-color': HEXColors });
    $('#ColorGroup').text(PalleteName);
    $('#ColorName').text(Description);
    $('#ColorName').css({ 'color': HEXColors });
    $('#ColorPantone').text(PantoneName);
    $('#ColorCMYK').text(CMYKColors);
    $('#ColorRGB').text(RGBColors);



    //alert(HEXColors);
}
