Change Theme Color

[Solved] Change Theme Color | Php - Code Explorer | yomemimo.com
Question : Change theme color

Answered by : confused-cow-kfi6z09d9kdf

const select = document.querySelector('select');
const html = document.querySelector('html');
document.body.style.padding = '10px';
function update(bgColor, textColor) { html.style.backgroundColor = bgColor; html.style.color = textColor;
}
select.onchange = function() { ( select.value === 'black' ) ? update('black','white') : update('white','black');
}

Source : https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/conditionals | Last Update : Fri, 26 Nov 21

Answers related to change theme color

Code Explorer Popular Question For Php