color String
(default: "#000")
The 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",
color: "#aa00bb"
});
</script>