Fluid 开发组注:主题最新版本已支持暗色模式,本文仅用于学习交流。
大概花了一个晚上搞暗黑模式,之后陆续优化了下
目前博客已经基本上适配完成了
目前是三种方案(优先级递减)
- 媒体查询
- 定时开启
- localStorage/sessionStorage 查询
媒体查询
,判断系统是否处于暗黑模式,支持大部分系统
Win10 需要浏览器开启软件深色模式
Android 同理,需要浏览器支持手机开启夜间模式的时候将自身切换到神色模式,目前 Chrome 支持,Edge 不支持,其他没测
iOS、MacOS 上的 Safari 也支持
定时开启
,在规定时间自动开启,如果在该时间段内取消了暗黑模式,能一直保持
localStorage/sessionStorage 查询
,能一直保持某一个模式的依赖
HTML
在 \themes\fluid\layout\layout.ejs
中找到 <body>
,在其之后加入如下代码
1 2 3 4 5 6 7 8 9 10 11
| <div id="dark" onclick="switchDarkMode()"></div> <script> var isNight = new Date().getHours() >= 22 || new Date().getHours() < 7; if( matchMedia('(prefers-color-scheme: dark)').matches || isNight || localStorage.getItem('dark') === '1') { if(!(isNight&&localStorage.getItem('noDark') === '1')) { document.body.classList.add('dark'); } } document.getElementById('dark').innerHTML = document.querySelector("body").classList.contains("dark")?"🌙":"🌞"; </script>
|
注意!一定紧跟在 body
标签之后,否则会出现闪烁
JS
在自定义 JS 中把下面代码加进去,直接加到 </body>
之前也行
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| function switchDarkMode() { if ($('body').hasClass('dark')) { $("#dark").html("🌞"); document.body.classList.remove('dark'); localStorage.setItem('noDark', '1'); localStorage.setItem('dark', '0'); } else { $("#dark").html("🌙"); document.body.classList.add('dark'); localStorage.setItem('dark', '1'); localStorage.setItem('noDark', '0'); } }
|
CSS
在自定义 CSS 中加入代码
可以用 stylus
,能少些写
但是引入时记得后缀还是 .css
不要变
下面是我的样式代码,基本覆盖所有内容
有配上些注释,根据自身情况修改,注意缩进
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
| #dark cursor pointer position fixed right 40px bottom 98px width 16px height 14px z-index 100 font-size 20px
.dark background-color #282c34
.mask background-color rgba(0,0,0,.7) !important
#board background-color #282c34 color #a09c9c img filter brightness(50%) // 图片亮度
p .index-info a color #a09c9c !important
.markdown-body h1,h2,h3,h4,h5,h6,s,li color:#a09c9c !important
.navbar-col-show .top-nav-collapse background-color #282c34 .navbar a color #a09c9c !important .animated-icon span background-color #a09c9c
.pagination a:hover .pagination .current background-color #6b6b6b73;
#subtitle .dark.typed-cursor--blink .scroll-down-arrow color #dfdfdf
#scroll-top-button background-color #282c34
i color #a09c9c
.tocbot-list a color #a09c9c
.tocbot-active-link footer a:hover color #1abc9c !important
footer footer a color #a09c9c
.list-group-item color #a09c9c background-color #282c34 .list-group-item:hover .tagcloud a:hover background-color #46484d
.links .card background-color #282c34 .card-body:hover background-color #46484d .link-title .link-intro color #a09c9c
.note-info background-color #3b5359 border-color #006d80
.note-danger background-color #783f42 border-color #670009
.note-success background-color #2a3e2e border-color #005915
.note-warning background-color #5b543e border-color #846500
.note-primary background-color #455a6f border-color #004188
|
localStorage
仔细观察刚刚的 js 代码,在其中用到了 localStorage
相当于一个标记,除非被手动清除,否则将会永久保存。
下面是支持该特性的最低版本
可以在浏览器控制台中查看他们的值
参考 https://crosschannel.cc/daily/hexo添加暗色模式.html