themeColor
Sets or gets the theme color of the FloatingActionButton.
Parameters
themeColor String
See floatingactionbutton.options.themeColor for valid options.
Example
<button id="fab"></button>
<script>
    var fab = $('#fab').kendoFloatingActionButton({
        text: 'Actions'
    }).getKendoFloatingActionButton();
    fab.themeColor('secondary');
</script>In this article