puckzxz / NotAnotherAnimeTheme

A easily customizable and automatically updating theme for Discord
The Unlicense
253 stars 982 forks source link

Asking for change custom font #184

Closed naruko-hstk closed 2 years ago

naruko-hstk commented 2 years ago

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

pp0236 commented 2 years ago

1nKhtcIBTq

puckzxz commented 2 years ago

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

naruko-hstk commented 2 years ago

Thanks a lot.