Add default fonts for emoji in Linux

This commit is contained in:
AkiraFukushima 2019-07-18 22:51:04 +09:00
parent d6e4fc1c18
commit d04bdc881d
3 changed files with 5 additions and 3 deletions

View File

@ -80,7 +80,7 @@ body,
} }
--specified-fonts: 'Noto Sans', 'Noto Sans CJK JP', 'Takaoゴシック', 'ヒラギノ角ゴ ProN W3', '-apple-system', 'BlinkMacSystemFont', --specified-fonts: 'Noto Sans', 'Noto Sans CJK JP', 'Takaoゴシック', 'ヒラギノ角ゴ ProN W3', '-apple-system', 'BlinkMacSystemFont',
'Segoe UI', 'Roboto', 'Helvetica Neue', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Noto Emoji';
font-family: var(--specified-fonts); font-family: var(--specified-fonts);

View File

@ -37,7 +37,7 @@ const mutations: MutationTree<AppearanceState> = {
state.appearance = conf state.appearance = conf
}, },
[MUTATION_TYPES.UPDATE_FONTS]: (state, fonts: Array<string>) => { [MUTATION_TYPES.UPDATE_FONTS]: (state, fonts: Array<string>) => {
state.fonts = fonts state.fonts = Array.from(new Set(fonts))
} }
} }

View File

@ -10,5 +10,7 @@ export default [
'Helvetica Neue', 'Helvetica Neue',
'Apple Color Emoji', 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol' 'Segoe UI Symbol',
'Noto Color Emoji',
'Noto Emoji'
] ]