Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GMEdit

A high-end code editor for all things GameMaker · By YellowAfterlife

Fonts

A topic by 2D Knight created Nov 14, 2021 Views: 130 Replies: 1
Viewing posts 1 to 2

How do you set a font to use a bold version?

Developer

You can override this (and almost any other bit of styling) using a custom theme, e.g.

.ace_content {
    font-weight: bold;
}

(if your font offers a larger number of styles like “semi-bold”/“oblique”, you can use 100..900 instead of bold)