Uses the official Reddit font on the website.
Use Reddit Sans on reddit.com by tobyisawesome
![Screenshot of Use Reddit Sans on reddit.com](https://userstyles.world/preview/19932/0.jpeg)
Details
Authortobyisawesome
LicenseNo License
Categoryreddit.com
Created
Updated
Size596 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Use Reddit Sans on reddit.com
@namespace reddit.com
@version 1.0.0
@description Uses reddit's official font
@author reallysoftuser
==/UserStyle== */
@-moz-document domain("reddit.com") {
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap');
body, * {
font-family: 'Reddit Sans', sans-serif;
}
pre, code, kbd, samp, tt {
font-family: 'Reddit Mono', monospace;
}
}