What font does the DevForum preformatted text use?

Hello everyone!
This topic was made because I like to know what font the DevForum use for their preformatted text, so that I could change my font in Studio.

The default font in question looks like this:

local str = "This is the DevForum preformatted text!"
print(str)

If the font was changed for others in some setting I don’t know about, I mean this.

It looks similar to Fira Mono quite a bit, but there are a lot of alterations which makes me prefer the font used by the DevForum.

1 Like

It depends on which browser and os your using… The css in the devforum just defines the font as monospace. .codeblock-buttons * { font-family: monospace, monospace !important; }

Here are the browser monospace fonts:
Internet Explorer: Courier New
Edge: Consolas
Firefox, Chrome: Courier New (courier on Mac)

2 Likes

Thank you! Yes it’s Consolas, I just searched it up.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.