backgroundString(default: "#fff")
The background color of the QR code. Accepts a valid CSS color string, including hex and rgb.
Example
<div id="qrCode"></div>
<script>
$("#qrCode").kendoQRCode({
  value: "https://demos.telerik.com/kendo-ui/dataviz/overview/index.html",
  background: "red"
});
</script>In this article