text.colorString(default: "black")
The color of the text. Any valid CSS color string will work here, including hex and rgb.
Example
<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
width: 300,
value: "123456",
text: {
color: "blue"
}
});
</script>