On the DevForum Condensed, DevForum Modified and DevForum Modified Mobile styles, there is an option to change the font and header font types.
There are two options when changing the font option. Firstly, use your system fonts (fonts pre-installed or otherwise installed onto the system) or importing them from an external source.
How to Find System Fonts
Windows
Control Panel > Fonts
(Windows 7, 10)
Control Panel > Appearnace and Personlization > Fonts
(Windows 8.1)
Settings > Personalisation > Fonts
(Windows 11)
MacOS
- Open the
Font Book
Application and Select My Fonts
or All User Fonts
(MacOS Ventura 13, Sonoma 14)
- Open the
Font Book
Application and Select User
or Computer
(MacOS Big Sur 11, Monterey 12)
Linux
- This'll change depending on the Linux distribution you're using, search up
How to Manage Fonts on [Insert Linux Distro + Version]
or How to See Downloaded/System Fonts on [Insert Linux Distro + Version]
iOS/iPadOS
- Open Settings
- Select General
- Select Fonts
Android
How to Install System Fonts
Windows
- Download the font files. These often come in compressed
.zip
folders. In one .zip tolder, you might find several variations of the same font such as "light" and "heavy."
- If the fonts are zipped, unzip them by right-clicking the .zip folder and then clicking Extract. Now you'll see the available TrueType and/or OpenType font files. Don'y worry about choosing between the OTF or TFF files, the difference between the two are not consequential for regular daily computer use.
- Right click the fonts you want and click install. If the font comes in several variations, find the one that doesn't have and variations (usually denoted by the file that doesn't have a keyword like "Light" or "Heavy" after the name.)
Alternatively you can go to the Fonts folder and drag the font files into it. Windows will automatically install them once you do this.
MacOS
- Download the font files. If the fonts are zipped, double click on the zipped file to unzip it. You'll see the available font files.
-
Install the font by;
- In the Font Book app, choose File > Add Fonts to Current User. In the window that appears, double-click the font file or;
- Drag the font file to the Font Book App icon in the Dock, then click Install in the dialouge box that appears or;
- Drag the font file on Font Book window or;
- Double Click the font file in the Finder, then click install in the dialouge box that appears
Linux
- This'll change depending on the Linux distribution you're using, search up
How to Install Fonts on [Insert Linux Distro + Version]
iOS/iPadOS
Use an application like Adobe Creative Cloud, Font Diner, AnyFont to install fonts onto your phone/tablet.
Android
Samsung
- Open the Galaxy Store
- Go to the Apps section, Find Popular Categories, then select Fonts
- Download a Font
Alternatively, you may need to download an app like #mono_ or zFont to download fonts onto Android. Most of these apps should provide a step by step guide on how to properly use them, so I'll leave it at that with how to use that method.
How to Import Fonts
The advantage of importing fonts is that you will not need to install the font onto your system (which is particularly good for Android and iOS/iPadOS where installing fonts is not as friendly and customizable. A disadvantage is that they will be overwritten whenever an update is made (updates will always overwrite Local Edits.) So you'll have to save the imports before updating the style. You'll also have to modify the source code yourself, albeit it shouldn't be too difficult.
Depending on the service you're using to get the fonts from, you'll have to fetch a different link. Below is an example of how the link should look like from a few vendors;
Google Fonts: https://fonts.googleapis.com/css?family=Font+Name (ex: https://fonts.googleapis.com/css?family=Open+Sans)
CDN Fonts: https://fonts.cdnfonts.com/css/font-name (ex: https://fonts.cdnfonts.com/css/chalet-newyork)
Font Library:https://fontlibrary.org//face/font-name (ex: https://fontlibrary.org//face/archivo-narrow)
Once you've grabbed this, open the extension and press the pencil icon, this'll open up a new Stylus tab with the code of the stylus theme. Once there scroll down until you find "@-moz-document". Make a line between this and the right of the stylus theme and type @import url('');
and insert the URL between the ' ' (ex: @import url('https://fonts.cdnfonts.com/css/open-dyslexic');)
Warning
Whenever you update, Stylus will overwrite any local edits made to the Stylus theme, so if you have installed/inserted fonts through this method, save the imports you added somewhere else and add them back in once you've updated! Otherwise they wont appear.
How to Change Fonts
Once you've chosen one of the above options when choosing the font you want to use, remember the font name then go to the variables section of the theme/stylus. You should find a variable with the name "Font Type" or "Heading Font Type" and replace the pre-selected font with the font of your choice