在wordpress中使用赏心悦目的lxgw字体

霞鹜文楷,这款字体将仿宋和楷体两种风格融合,刚硬却又不失圆润。名字取自王勃所作的一篇著名骈文《滕王阁序》-「落霞与孤鹜齐飞,秋水共长天一色」。2020 年 12 月,日本著名字体厂商 FONTWORKS 在 GitHub 上开源了 7 款日文字体,在此当中,最受欢迎的当属它的「Klee」字体。

国内一位开发者受到这款字体的启发,于 2021 年 1 月,开始尝试为这款日文字体补全简繁常用字。历经一段时间的更新与调整后,「霞鹜文楷」在 GitHub 开源。

打开wordpress自定义设置,在主题设置的自定义css中,我们先import下字体css路径,然后对我们需要改变字体的元素,然后更改font-family

@import url("https://cdnjs.cloudflare.com/ajax/libs/lxgw-wenkai-screen-webfont/1.7.0/lxgwwenkaiscreenr.css");

h1 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

h2 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

h3 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

h4 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

h5 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

h6 {
  font-family: "LXGW WenKai Screen R", sans-serif;
}


body {
  font-family: "LXGW WenKai Screen R", sans-serif;
}

感谢lxgw和 Klee One 的字体设计师,Repo:  https://github.com/lxgw/LxgwWenKai

《在wordpress中使用赏心悦目的lxgw字体》有1条评论

发表评论