RustMagazine/rustmagazine

The font-weight for title seems too large that hard to read

Closed this issue · 2 comments

As described in the title, the font weight is too large.

image

After remove font-weight: 800:

image


What do you think?

Folyd commented

Yes, we need to improve this. Thanks.

Folyd commented

From reddit:

This font gets double-bolded :D – Alfa Slab One is already bold, and then font-weight: 800 makes the browser "bold it even more" (fun fact: Rust blog also had the same issue). So instead of dimming the font-weight of titles, you should instead just tell the browser that Alfa Slab One is already bold:

@font-face {
font-family: 'Alfa Slab One';
font-style: normal;
font-weight: 800; ← change from 400
(setting weight 400 for title would also work, but would have a side-effect of disabling bold when fallback font is used)