📜  更改主题颜色 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:20.227000             🧑  作者: Mango

代码示例1
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');
}