Reverts the Roblox website font to the font used before April 18, 2024
Revert 2024 Roblox Font by cocothemii
Details
Authorcocothemii
LicenseNo License
Categoryroblox.com
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
On April 18, 2024, Roblox changed the primary font used across their website to a new custom font called Builder Sans. Prior to this, Roblox had been using the Gotham font across the website since 2019.
This userstyle attempts to re-apply the Gotham font and make some small tweaks to ensure the website looks as it did before. If the user does not have the Gotham font installed, Montserrat will be used instead.
Updates
April 19, 2024 1.1.1
- Update style name
April 19, 2024 1.1.0
- Revert font weight from 700 to 500 for game titles
April 19, 2024 1.0.2
- Fix Gotham font name
April 18, 2024 1.0.1
- Only import Montserrat on the Roblox website
April 18, 2024 1.0.0
- Initial version
Source code
/* ==UserStyle==
@name Revert 2024 Roblox Font
@namespace roblox.com
@version 1.1.1
@description Reverts the Roblox website font to the font used before April 18, 2024
@author CocoTheMii
==/UserStyle== */
@-moz-document domain("roblox.com") {
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.builder-font .text,
.builder-font body,
.builder-font button,
.builder-font html,
.builder-font input,
.builder-font pre,
.builder-font select,
.builder-font textarea,
.builder-font,
.builder-font .h1,
.builder-font .h2,
.builder-font .h3,
.builder-font .h4,
.builder-font .h5,
.builder-font .h6,
.builder-font h1,
.builder-font h2,
.builder-font h3,
.builder-font h4,
.builder-font h5,
.builder-font h6 {
font-family: "HCo Gotham SSm", Gotham, Montserrat, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.builder-font .game-card-container .game-card-name {
font-weight: 500;
}
}