function onUpdateDark(callback) {
const probe = document.body;
probe.style.setProperty("transition-property", "color");
probe.style.setProperty("transition-duration", "0.001s");
const update = () => {
const value = getComputedStyle(probe)["color-scheme"];
if (dark == value) return;
setDark(value);
callback(value);
};
update();
probe.addEventListener("transitionstart", update);
invalidation.then(() => probe.removeEventListener("transitionstart", update));
}