if (cell == 1) {
ctx.fillStyle = 'red'
} else if (cell == 2) {
ctx.fillStyle = 'green'
} else {
ctx.fillStyle = 'white' // устанавливается белый, пишется белым
}
. ctx.font = "36px serif"
+ ctx.fillStyle = "black"
- ctx.strokeStyle = "black"
ctx.fillText("Hello world", 100, 100)