color String
(default: "black")
The color of the bar elements. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
type: "ean13",
value: "123456789987",
color: "#10c4b2"
});
</script>