forked from tangly1024/NotionNext
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd541d2
commit 26fbe3b
Showing
8 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* 在此处配置字体 | ||
*/ | ||
const BLOG = require('../blog.config') | ||
// const { fontFamily } = require('tailwindcss/defaultTheme') | ||
|
||
function CJK () { | ||
switch (BLOG.LANG.toLowerCase()) { | ||
case 'zh-cn': | ||
case 'zh-sg': | ||
return 'SC' | ||
case 'zh': | ||
case 'zh-hk': | ||
case 'zh-tw': | ||
return 'TC' | ||
case 'ja': | ||
case 'ja-jp': | ||
return 'JP' | ||
case 'ko': | ||
case 'ko-kr': | ||
return 'KR' | ||
default: | ||
return null | ||
} | ||
} | ||
|
||
const fontSansCJK = !CJK() | ||
? [] | ||
: [`"Noto Sans CJK ${CJK()}"`, `"Noto Sans ${CJK()}"`] | ||
const fontSerifCJK = !CJK() | ||
? [] | ||
: [`"Noto Serif CJK ${CJK()}"`, `"Noto Serif ${CJK()}"`] | ||
|
||
const fontFamilies = { | ||
sans: ['-apple-system', 'BlinkMacSystemFont', '"Apple Color Emoji"', | ||
'"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Segoe UI"', '"PingFang SC"', | ||
'HarmonyOS_Regular', '"Hiragino Sans GB"', '"Microsoft YaHei"', '"Helvetica Neue"', | ||
'Helvetica', '"Source Han Sans SC"', '"Noto Sans CJK SC"', '"WenQuanYi Micro Hei"', | ||
'Arial', 'sans-serif', ...fontSansCJK], | ||
serif: ['STZhongsong', 'STSong', '"Noto Serif CJK"', '"Noto Serif SC"', 'PMingLiu', | ||
'SimSun', '"WenQuanYi Bitmap Song"', '"Times New Roman"', 'Times', 'serif', | ||
'"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', ...fontSerifCJK], | ||
noEmoji: [ | ||
'ui-sans-serif', | ||
'system-ui', | ||
'-apple-system', | ||
'BlinkMacSystemFont', | ||
'sans-serif' | ||
] | ||
} | ||
|
||
module.exports = fontFamilies |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters