mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
Merge branch 'main' into theme-hexo
This commit is contained in:
21
lib/cjk.js
21
lib/cjk.js
@@ -1,21 +0,0 @@
|
||||
const BLOG = require('../blog.config')
|
||||
|
||||
module.exports = function () {
|
||||
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
|
||||
}
|
||||
}
|
||||
52
lib/font.js
Normal file
52
lib/font.js
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user