I am working on a WordPress theme and I am using the built in iris color picker (by Automatic). Iris supports color palettes by default, however it displays all colors on one single line, and once you add more than 8 colors, the color boxes get very small (see JSFiddle demo below). Is there anyway to add a new row of colors to the iris color picker?
Here's the default jQuery plus JSFiddle
jQuery(document).ready(function($){
$('#color-picker').iris({
hide: false,
palettes: ['#125', '#459', '#78b', '#ab0', '#de3', '#f0f', '#125', '#459', '#78b', '#ab0', '#de3', '#f0f'],
});
});