千灵

Back

主题颜色#

打开hexo/themes/next/source/css/_variables/base.styl找到Colors代码段,如下:

本节参考自 晴天·Sunny

标题栏背景颜色#

当使用Pisces主题时,网站标题栏背景颜色是黑色的,感觉不好看,可以在source/css/_schemes/Pisces/_brand.styl中修改

.site-meta {
  padding: 20px 0;
  color: white;
  background: $blue-dodger; //修改为自己喜欢的颜色
  +tablet() {
    box-shadow: 0 0 16px rgba(0,0,0,0.5);
  }
  +mobile() {
    box-shadow: 0 0 16px rgba(0,0,0,0.5);
  }
}
css

但是,我们一般不主张这样修改源码的,在next/source/css/_custom目录下面专门提供了custom.styl供我们自定义样式的,因此也可以在custom.styl里面添加:

// Custom styles.
.site-meta {
  background: $blue; //修改为自己喜欢的颜色
}
css

本节参考自 孤舟蓑笠翁,独钓寒江雪

修改 Hexo Next 主题颜色
https://qianling.pw/theme-colors/
Author 千灵
Published at July 24, 2017
Comment seems to stuck. Try to refresh?✨