fontName.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. export const FONT_FAMILYS = [
  2. { source: 'windows', zh: '微软雅黑', en: 'Microsoft Yahei' },
  3. { source: 'windows', zh: '宋体', en: 'SimSun' },
  4. { source: 'windows', zh: '黑体', en: 'SimHei' },
  5. { source: 'windows', zh: '楷体', en: 'KaiTi' },
  6. { source: 'windows', zh: '新宋体', en: 'NSimSun' },
  7. { source: 'windows', zh: '仿宋', en: 'FangSong' },
  8. { source: 'osx', zh: '苹方', en: 'PingFang SC' },
  9. { source: 'osx', zh: '华文黑体', en: 'STHeiti' },
  10. { source: 'osx', zh: '华文楷体', en: 'STKaiti' },
  11. { source: 'osx', zh: '华文宋体', en: 'STSong' },
  12. { source: 'osx', zh: '华文仿宋', en: 'STFangSong' },
  13. { source: 'osx', zh: '华文中宋', en: 'STZhongSong' },
  14. { source: 'osx', zh: '华文琥珀', en: 'STHupo' },
  15. { source: 'osx', zh: '华文新魏', en: 'STXinwei' },
  16. { source: 'osx', zh: '华文隶书', en: 'STLiti' },
  17. { source: 'osx', zh: '华文行楷', en: 'STXingkai' },
  18. { source: 'osx', zh: '冬青黑体简', en: 'Hiragino Sans GB' },
  19. { source: 'osx', zh: '兰亭黑-简', en: 'Lantinghei SC' },
  20. { source: 'osx', zh: '偏偏体-简', en: 'Hanzipen SC' },
  21. { source: 'osx', zh: '手札体-简', en: 'Hannotate SC' },
  22. { source: 'osx', zh: '宋体-简', en: 'Songti SC' },
  23. { source: 'osx', zh: '娃娃体-简', en: 'Wawati SC' },
  24. { source: 'osx', zh: '行楷-简', en: 'Xingkai SC' },
  25. { source: 'osx', zh: '圆体-简', en: 'Yuanti SC' },
  26. { source: 'office', zh: '华文细黑', en: 'STXihei' },
  27. { source: 'office', zh: '幼圆', en: 'YouYuan' },
  28. { source: 'office', zh: '隶书', en: 'LiSu' },
  29. { source: '', zh: 'Arial', en: 'Arial' },
  30. ]