outputActions.themeColorString
Specifies the theme color of the action button. Available options: "base", "primary", "secondary", "tertiary", "success", "warning", "error", "info", "light", "inverse", "dark".
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
outputActions: [
{ command: "danger", text: "Delete", themeColor: "error" },
{ command: "success", text: "Approve", themeColor: "success" }
]
});
</script>
In this article