tools.palette String|Array (default: "websafe")

Specifies the color palette for "foreColor" and "backColor" tools. If you need to use the color gradient view in the picker instead of the palette, set this value to null.

Example - "websafe" palette

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: [{
        name: "foreColor"
    }]
});
</script>

Example - list of colors

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: [{
        name: "backColor",
        palette: ["#f0d0c9", "#e2a293", "#d4735e", "#65281a"]
    }]
});
</script>

Example - use gradient

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    tools: [{
        name: "backColor",
        palette: null
    }]
});
</script>
In this article