New to Kendo UI for jQuery? Start a free 30-day trial
Appearance
Updated on Dec 10, 2025
In this article, you will find information about the styling options and rendering of the Kendo UI FlatColorPicker.
Size
The size option controls how big or small the FlatColorPicker component looks. The structure of the class is k-flatcolorpicker-{size}.
The following values are available for the size option:
sm—small sizemd—medium sizelg—large sizenone—unset
The default size value is medium and it is applied to the div element through the k-flatcolorpicker-md class.
The example below shows a basic configuration and how to set size to "large":
<div id="flatcolorpicker"></div>
<script>
$("#flatcolorpicker").kendoFlatColorPicker({
size: "large"
});
</script>
Below is the HTML that is affected from the configuration. The changes are applied to the div.k-flatcolorpicker element:
html
<div id="flatcolorpicker" class="k-flatcolorpicker k-coloreditor k-coloreditor-lg">
...
</div>