更改超链接的颜色为蓝色
在next\source\css\_custom\custom.styl
中更改,代码如下:
.post-body p a {
color: #0593d3;
border-bottom: none;
&:hover {
color: #0477ab;
text-decoration: underline;
}
}
更改选中字体的颜色
在\themes\next\source\css\_variables
更改base.styl
的selection-bg
修改文章底部的那个带#号的标签
修改模板 /themes/next/layout/_macro/post.swig
,搜索 rel=”tag”>#
,将 # 换成<i class="fa fa-tag"></i>
参考文章:
Hexo-NexT搭建个人博客