<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
</head>
<body>
<input type="button" value="КНОПКА" id="but">
<script>
let flag = true;
but.onclick = function() {
if (flag){but.style.background = 'red';
flag = false;}
else{but.style.background = 'white';
flag = true;}
}
</script>
</body>
</html>