height

height - Specifies the tile height in the color grid of basic palette of ColorPicker widget. Its default value is 16.


<input id="colorpicker" type="color" />

<script type="text/javascript">

     $(function () {
        $("#colorpicker").shieldColorPicker({
           basicPalette: {                 
                  tileSize: {
                      height: 6
                  }
           },
           value: "#FFCCCC"
        });
     });

</script>