好吧,配置里有,我是XX

1
2
3
4
5
6
7
# Global font settings
# Don't modify the following settings unless you know how they work (非必要不要修改)
font:
global-font-size: 16px
code-font-size:
font-family:
code-font-family:

找了全网都没咋看到butterfly主题修改字体的教程,瞎找找到了,记录一下,早就想改大了。

也可能是因为太简单了?反正我还不会html这些语言只能一点一点做好备份摸索

找到博客目录下的/themes/butterfly/source/css/var.styl,我的butterfly版本为4.3.1,找到第29行的// Global Variables

1
2
3
4
5
6
7
8
// Global Variables
$font-size = hexo-config('font.global-font-size') ? convert(hexo-config('font.global-font-size')) : 14px
$code-font-size = hexo-config('font.code-font-size') ? convert(hexo-config('font.code-font-size')) : var(--global-font-size)
$font-color = #1F2D3D
$text-line-height = 2
$web-bg = hexo-config('background') && unquote(hexo-config('background'))
$index_top_img_height = hexo-config('index_top_img_height') ? convert(hexo-config('index_top_img_height')) : 100vh
$index_site_info_top = hexo-config('index_site_info_top') ? convert(hexo-config('index_site_info_top')) : 43%

看到$font-size = hexo-config('font.global-font-size') ? convert(hexo-config('font.global-font-size')) : 14px

默认为14px,在这里你可以修改为其他的……px,将全局字体放大

推荐16px即可,要不大过头了😆

在这个文件里你还可以修改颜色侧边栏之类的样式,我就不改了嘿嘿。