Add more weight of emoji font

For at least Chrome on Windows 10, we need to explicitly add additional weights
for emoji to appear when bold.
pull/21833/head
J. Ryan Stinnett 2019-05-22 16:22:18 +01:00
parent e44f3b65e6
commit 11828c40e5
1 changed files with 4 additions and 3 deletions

View File

@ -77,9 +77,10 @@ export async function fixupColorFonts() {
} }
if (await isColrFontSupported()) { if (await isColrFontSupported()) {
const font = new FontFace("Twemoji", const path = `url('${require("../../res/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2")}')`;
`url('${require("../../res/fonts/Twemoji_Mozilla/TwemojiMozilla-colr.woff2")}')`, {}); document.fonts.add(new FontFace("Twemoji", path, {}));
document.fonts.add(font); document.fonts.add(new FontFace("Twemoji", path, { weight: 600 }));
document.fonts.add(new FontFace("Twemoji", path, { weight: 700 }));
} }
// if not supported, the browser will fall back to one of the native fonts specified. // if not supported, the browser will fall back to one of the native fonts specified.
} }