mirror of
https://github.com/PKUFlyingPig/cs-self-learning.git
synced 2026-02-03 02:24:53 +08:00
* feat(giscus): dynamic theme change * reformat and update giscus theme color to protanopia
26 lines
1.1 KiB
HTML
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 %}
|