Files
cs-self-learning/overrides/main.html
mancuoj 86ad554095 [FEATURE] Dynamic theme change for giscus (#362)
* feat(giscus): dynamic theme change

* reformat and update giscus theme color to protanopia
2022-12-21 20:26:13 +08:00

26 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block disqus %}
<script src="https://giscus.app/client.js" data-repo="PKUFlyingPig/cs-self-learning" data-repo-id="R_kgDOGP67ng"
data-category="Announcements" data-category-id="DIC_kwDOGP67ns4COM9Q" data-mapping="title"
data-reactions-enabled="1" data-emit-metadata="0" data-input-position="top" data-theme="light" data-lang="zh-CN"
data-loading="lazy" crossorigin="anonymous" async>
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const ref = document.querySelector("[data-md-component=palette]")
ref.addEventListener("change", function () {
var palette = __get("__palette")
if (palette && typeof palette.color === "object") {
const theme = palette.color.scheme === "slate" ? "dark_protanopia" : "light_protanopia"
const frame = document.querySelector(".giscus-frame")
frame.contentWindow.postMessage({
giscus: { setConfig: { theme } }
}, "https://giscus.app")
}
})
})
</script>
{% endblock %}