Skip to content

Instantly share code, notes, and snippets.

@djflux
Created August 16, 2021 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djflux/c0e41f57f4c9b78b16753c9adb67e238 to your computer and use it in GitHub Desktop.
Save djflux/c0e41f57f4c9b78b16753c9adb67e238 to your computer and use it in GitHub Desktop.
Tampermonkey script to change Outlook 365 fonts to Helvetica
// ==UserScript==
// @name Helveticize-Outlook365
// @namespace https://flux.fm/
// @include https://outlook.office.com/*
// @description Make Outlook fonts better because the suck by default.
// @author Andrew Rechenberg
// @match https://outlook.office.com/*
// @grant GM_addStyle
// @version 20210816
// ==/UserScript==
GM_addStyle ( `
span:not(span[role=presentation]) {
font-family: Helvetica, arial, sans-serif !important;
};
span[role=presentation] {
font-family: 'controlIcons';
}
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment