in toolkit/jb/svg.js [546:554]
show: function(target, value, repr) {
if (!value) return;
var groupNode = d3.select(target).append('g')
.classed('jb-palette-value', true)
.node();
value.forEach(function(color, i) {
addColorRect(groupNode, color).style('transform', 'translate(' + (i * 10) + 'px, 0)');
});
}