【Hexo】Hexo-butterfly全局字体的修改
本文最后更新于 2025-04-15,若需联系:请发至[email protected]
好吧,配置里有,我是XX
# 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
// 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即可,要不大过头了😆
在这个文件里你还可以修改颜色侧边栏之类的样式,我就不改了嘿嘿。
本文采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 sheerkvc
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果