Hexo theme pure 主题很棒,符合我的大部分需求。美中不足的是字体设置有些偏小,字间距有些紧凑。

为了优化阅读体验,重新设置了CSS 中的 font-family、字体大小、颜色、行距,让文字看起来更美观。参考这篇文章-优化阅读体验,网站预设字体的CSS最佳写法

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
.main .content {
    /* min-height: 85vh; */
    
    /* Ref: https://www.shejidaren.com/the-best-css-font-in-web-design.html */
    /*  字体  */
    font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
  
    /*  字号 */
    font-size: 16px;
    
    /*  字体颜色  */
    color: #333;
    
    /* 行距 */
    line-height: 1.75em;
}