badge.fillModeString(default: 'solid')
Specifies how theme colors apply to a badge. Valid options are solid (default) and outline.
Example
<button id="button">Button</button>
<script>
  $("#button").kendoButton({
    badge: {
      text: "3",
      fillMode: "outline",
      themeColor: "primary"
    }
  });
</script>In this article