ai.aiAssistant.toolbarItems.themeColorString

The theme color of the toolbar item.

Example

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" }
  ],
  ai: {
    aiAssistant: {
      toolbarItems: [
        {
          type: "button",
          text: "Primary Action",
          themeColor: "primary"
        }
      ]
    }
  }
});
</script>