Add default fonts for emoji in Linux
This commit is contained in:
parent
d6e4fc1c18
commit
d04bdc881d
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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'
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue