blinkfox / typora-vue-theme

This is a typora theme inspired by Vue document style. 一个类似于 Vue 文档风格的 Typora Markdown 编辑器主题。
https://theme.typora.io/theme/Vue/
Apache License 2.0
931 stars 180 forks source link

支持微软雅黑字体么? #4

Closed tengshe789 closed 6 years ago

blinkfox commented 6 years ago

@tengshe789 不支持额,如果你想用微软雅黑显示的话,得自己改几行css代码就行,主要修改如下:

  1. 全局的字体修改是在vue.css文件第263行,在font-family属性的最前面添加微软雅黑的名称即可,这样就可以让微软雅黑的字体显示优先级最高,系统读取不到微软雅黑时,再依次使用后面类型的字体,代码改动如下:
font-family: 微软雅黑, Source Sans Pro, Helvetica Neue, Arial, sans-serif !important;
  1. 代码块和行内代码的字体修改分别是在vue.css文件第551564行,改法同前面类似,都是在font-family属性的最前面添加微软雅黑:
font-family: 微软雅黑, Roboto Mono, Source Sans Pro, Monaco, courier, monospace !important;
font-family: 微软雅黑, Source Sans Pro, Roboto Mono, Monaco, courier, monospace !important;
tengshe789 commented 6 years ago

谢谢,成功了~