canvas style code example
Example 1: js canvas fill color
// canvas context.fillStyle = "Color"
ctx.fillStyle = "#FF0000";
Example 2: html5 canvas
<canvas id="" width="" height=""></canvas>
<script>
</script>
// canvas context.fillStyle = "Color"
ctx.fillStyle = "#FF0000";
<canvas id="" width="" height=""></canvas>
<script>
</script>