photo26/photo21/static/theme.js
2026-04-22 09:28:58 +02:00

13 lines
454 B
JavaScript

/*
This file is part of photo21
Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
SPDX-License-Identifier: GPL-3.0-or-later
*/
(function() {
var mq = window.matchMedia('(prefers-color-scheme: dark)');
document.documentElement.setAttribute('data-bs-theme', mq.matches ? 'dark' : 'light');
mq.addEventListener('change', function(e) {
document.documentElement.setAttribute('data-bs-theme', e.matches ? 'dark' : 'light');
});
})();