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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
| if hexo-config('darkmode.enable') || hexo-config('display_mode') == 'dark' [data-theme='dark'] --global-bg: darken(#121212, 2) --font-color: alpha(#FFFFFF, .6) --hr-border: alpha(#FFFFFF, .3) --hr-before-color: alpha(#FFFFFF, .6) --search-bg: --search-input-color: alpha(#FFFFFF, .6) --search-result-title: alpha(#FFFFFF, .8) --preloader-bg: darken(#121212, 2) --preloader-color: alpha(#FFFFFF, .6) --tab-border-color: --tab-botton-bg: --tab-botton-color: alpha(#FFFFFF, .6) --tab-button-hover-bg: lighten(#121212, 15) --tab-button-active-bg: --card-bg: --sidebar-bg: --btn-hover-color: lighten(#121212, 40) --btn-color: alpha(#FFFFFF, .6) --btn-bg: lighten(#121212, 5) --text-bg-hover: lighten(#121212, 15) --light-grey: alpha(#FFFFFF, .6) --white: alpha(#FFFFFF, .8) --text-highlight-color: alpha(#FFFFFF, .8) --blockquote-color: alpha(#FFFFFF, .6) --blockquote-bg: lighten(#121212, 10) --reward-pop: lighten(#121212, 10) --sidebar-icon-color: alpha(#FFFFFF, .6)
// 網站背景,footer背景 background: darken(#121212, 2)
position: absolute width: 100% height: 100% background-color: alpha($dark-black, .7) content: ''
background-color:
code background:
pre > code background: 0
.note code background: $code-background
// 頭部 &:before position: absolute top: 0 left: 0 display: block width: 100% height: 100% content: ''
& > &.fixed background: alpha(#121212, .8) box-shadow: 0 5px 6px -5px rgba(133, 133, 133, 0)
// 代碼框 pre, .highlight:not(.js-file-line-container) background-color: lighten(#121212, 2) !important color: alpha(#FFFFFF, .6) !important
figure.highlight box-shadow: none
if hexo-config('rootConfig.highlight') && hexo-config('rootConfig.highlight.enable') table::-webkit-scrollbar-thumb background: lighten(#121212, 5)
.line:before color: alpha(#FFFFFF, .6) !important
.hljs background-color: lighten(#121212, 2) !important
pre[class*='language-']::-webkit-scrollbar-thumb background: lighten(#121212, 5)
.highlight-tools background: lighten(#121212, 3) !important color:
.comment-switch if hexo-config('comments.text') background:
label filter: brightness(.7)
// note if hexo-config('note.style') == 'modern' || hexo-config('note.style') == 'flat' .note filter: brightness(.7)
// hide-tags .hide-button, .btn-beautify, .mermaid, .post-outdate-notice, .error-img, img, .gist, .aplayer filter: brightness(.7)
border-bottom: 1px dashed alpha(#FFFFFF, .1)
// 第三方 // 插件 hexo-blog-encrypt label, input color: alpha(#FFFFFF, .6) !important
input background-color:
// Gitalk filter: brightness(.8)
svg fill: alpha(#FFFFFF, .8) !important
// Disqus and Disqusjs .dsqjs-tab-active, .dsqjs-no-comment color: alpha(#FFFFFF, .6)
.dsqjs-order-label background-color: lighten(#121212, 5)
.dsqjs-post-body color: alpha(#FFFFFF, .6)
code, pre background:
blockquote color: alpha(#FFFFFF, .6)
|