summaryrefslogtreecommitdiff
path: root/js/colors.js
blob: 2cc6a185e493a2ccdec4accbe0ec7fa80f619fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// @license "http://www.wtfpl.net/txt/copying/" WTFPL

if ( localStorage.getItem("color-mode") === "dark" ||
    ( !localStorage.getItem("color-mode") && window.matchMedia('(prefers-color-scheme: dark)').matches )
) {
    document.documentElement.setAttribute("color-mode", "dark");
};

function toggleColorMode() {
    var doc = document.documentElement;
    var color = doc.getAttribute("color-mode") == "dark" ? "light" : "dark";
    doc.setAttribute("color-mode", color);
    localStorage.setItem("color-mode", color);
};

// @license-end