messageBoxThemeColorString(default: "error")
Specifies the theme color applied to the validation summary message box.
The supported values are:
baseprimarysecondarytertiaryinfosuccesswarningerrorinverse
Example
<form id="myform">
<input name="username" required /> <br />
<input type="email" name="userEmail" required /> <br />
<button>Validate</button>
</form>
<script>
$("#myform").kendoValidator({
validationSummary: true,
messageBoxThemeColor: "warning"
});
</script>