Restoring the Default Sharkey Font

Restoring the Default Sharkey Font

Sakurajima uses a web font called Myriad Pro, not the Lexend font that is the Sharkey Default. You can restore the font from Sharkey by adding this CSS in Custom CSS
Code:
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 400;
    src: url('/static-assets/fonts/Lexend-VariableFont_wght.ttf') format('opentype');
}
html {
font-family: 'Lexend', 'Hiragino Maru Gothic Pro', "BIZ UDGothic", Roboto, HelveticaNeue, Arial, sans-serif !important;
}
Author
chikorita157
Views
1,097
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from chikorita157

Top