hexo-theme-volantis
Version:
Elegant and powerful theme for Hexo.
42 lines (36 loc) • 1.27 kB
text/stylus
// 异步加载的暗黑模式 暗黑模式 CSS 变量
async_dark()
// tag plugin from stellar
--block-hover: mix($c-block-dark, $c-text-dark, 95)
--text-p1: $c-text-dark
--text-p3: mix($c-text-light, $c-site-bg-light, 60)
--card: $c-card-light
// waline Dark Color https://github.com/volantis-x/hexo-theme-volantis/issues/633
if hexo-config('comments.service')=='waline'
--waline-white: #000
--waline-light-grey: #666
--waline-dark-grey: #999
--waline-text-color: #888
--waline-bgcolor: #1e1e1e
--waline-bgcolor-light: #272727
--waline-border-color: #333
--waline-disable-bgcolor: #444
--waline-disable-color: #272727
--waline-bq-color: #272727
--waline-info-bgcolor: #272727
--waline-info-color: #666
// Custom Files
for $injects_darkVar in hexo-config('injects.darkVar')
@import $injects_darkVar;
// eg:
// body
// --color-site-body: blue !important
@media (prefers-color-scheme: dark)
:root
--color-mode: 'dark'
:root:not([color-scheme])
async_dark()
@import 'dark_plugins'
[color-scheme='dark']
async_dark()
@import 'dark_plugins'