Hexo-Fluid主题修改字体思源宋体
打开下载字体的网站google-webfonts-helperhttps://gwfh.mranftl.com/fonts搜索思源宋体—Noto Serif SC,然后去掉latin,选择简体中文。
在下方点击下载,然后传到github仓库source目录中的fonts目录。如图
在source目录创建css目录,如上图,然后再创建custom.css写入
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17/* noto-serif-sc-regular - chinese-simplified */
@font-face {
font-family: 'Noto Serif SC';
font-style: normal;
font-weight: 400;
src: local(''),
url('../fonts/noto-serif-sc-v22-chinese-simplified-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../fonts/noto-serif-sc-v22-chinese-simplified-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}最后打开主题的配置文件在如图所在行数修改配置
1
font_family: Noto Serif SC,"Microsoft Yahei", Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif
修改完就保存(一起修改),然后重新部署,就可以了。
Hexo-Fluid主题修改字体思源宋体
https://202271.xyz/post/18118/