Skip to content

How to add a custom font? #1540

Discussion options

You must be logged in to vote

How to add custom font?

The simplest way to add custom fonts inside Blink Shell is by using CSS. The fonts can be loaded from a remote server, or by converting them to base64. Nerd fonts should work without issue following this method. You can browse our gallery to see if we can already save you some work.

Base64

To convert your fonts, we recommend the Transfonter tool. It will automatically generate a stylesheet you can import right into Blink Shell. Or by using any other converter and manually the following CSS. You can upload the CSS as a Gist for easier access.

@font-face {
 font-family: "Fira Code";
 font-style: normal;
 font-weight: 200;
 src: url(data:font/woff;charset=utf-8;base64,<…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by carloscabanero
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant