Watch a demo of different values of the fillStyle property.
Or click a specific value to see the result:
const c = document.getElementById('myCanvas'); const ctx = c.getContext('2d'); ctx.fillStyle = '#0000ff'; ctx.fillRect(20,20,150,100);
Play more with the code in our Tryit yourself editor: Try it Yourself ❯