puckzxz / NotAnotherAnimeTheme

A easily customizable and automatically updating theme for Discord

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Asking for change custom font

naruko-hstk opened this issue · comments

Where can I change font in theme
I really don't want to using BetterDiscord's Custom CSS

commented

1nKhtcIBTq

commented

Import a font or install one on your system

If you're importing a font from the web you'll need to import it like this near the top of the theme file

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

Websites should give you a URL you can just copy and paste, if you're using a font that's installed on your system or you're planning to just install the font on your system then you can ignore this import step

Once you have a font all you need to do is apply it to all elements in the client

* {
  font-family: 'My Font Name';
}

Replace the 'My Font Name' with the name of your font

Thanks a lot.