toolbarItems.themeColorString
The theme color of the toolbar item. Available options are base, primary, secondary, tertiary, success, warning, error, info, light, inverse or dark.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
toolbarItems: [
{ type: "button", themeColor: "primary", text: "Action" }
]
});
</script>
In this article