新建 /theme/butterfly/source/css/self.css

添加代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#article-container pre, #article-container figure.highlight {
background: #e6ebf190;
}

#article-container figure.highlight .gutter pre {
background-color: #f6f8fa50;
}

#article-container .highlight-tools {
background: #e6ebf150;
}

#article-container pre{
background: #e6ebf100;
}

在/theme/butterfly/_config.yml的inject.head引入self.css

1
2
3
4
inject:
head:
- <link rel="stylesheet" href="/css/self.css">
bottom:

结束