Background colour has to be changed with the colour I'm drawing with.
So if i'm drawing with the colour red on the canvas I want to click the clear button and the canvas div will clear all the drawings and change the background colour to red.
Here is what I have so far but I don't know how to change the colour to the one I have selected
function ClearCanvas(sColour) {
DebugMessage("Clear Canvas");
const context = oCanvas.getContext('2d');
context.clearRect(0, 0, oCanvas.width, oCanvas.height);
document.getElementById("1Canvas").style.background = "____";
}