konva
konva copied to clipboard
Font weight 500 not working
I am trying to load and use Montserrat font with normal, bold , medium , bolditalic and italic versions, i load all the fonts in my browser.
This is how i set the font style
const fontStyle = fontWeight === 700 && isItalic ? "italic bold" : fontWeight === 400 && isItalic ? "italic" : fontWeight === 700 && !isItalic ? "bold" : fontWeight===500 && !isItalic ? "500" : "normal";
current output
expected output
Please make a demo. Also, make sure all variations of that font are loaded.
https://jsfiddle.net/b6qkuhs8/1/ Here is the demo , i think weight 500 and 600 are not working pls check, thanks
I see the issue in the demo. But I don't know what I can do here from Konva side. As I can see, konva is setting font style on 2d canvas API correctly.