Trate de hacer la bandera de Colombia, mi país. Y agregué el vector que diseñó el profe.
<meta charset="UTF-8">
<canvas width="600" height="400"></canvas>
<script>
let screen = document.querySelector("canvas");
let brush = screen.getContext("2d");
brush.fillStyle = "lightgrey";
brush.fillRect(0, 0, 600, 400);
brush.fillStyle = "Yellow";
brush.fillRect(0, 0, 600, 175);
brush.fillStyle = "Blue";
brush.fillRect(0, 175, 600, 113);
brush.fillStyle = "Red";
brush.fillRect(0, 288, 600, 112);
brush.fillStyle = "Black";
brush.beginPath();
brush.moveTo(300, 200);
brush.lineTo(200, 400);
brush.lineTo(400, 400);
brush.fill();
brush.fillStyle = "purple";
brush.beginPath();
brush.arc(300, 200, 50, 0, 2*3.14);
brush.fill();
</script>