Reverts fonts to Noto Sans on Discord.
Revert gg sans on Discord by tomodachi94
Details
Authortomodachi94
LicenseCC Zero
Categorydiscord.com
Created
Updated
Size606 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
// ==UserScript==
// @name Revert gg sans on Discord
// @namespace https://userstyles.world
// @description Removes the gg sans font on Discord, reverting it to Noto Sans.
// @author Tomodachi94
// @include https://discord.com/*
// @include https://*.discord.com/*
// @run-at document-start
// @version 0.20221202190246
// ==/UserScript==
@-moz-document domain("discord.com") {
:root {
--font-primary: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
--font-display: "Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif
}
}