Skip to content

Instantly share code, notes, and snippets.

@hyrious
Created February 3, 2021 01:19
Show Gist options
  • Save hyrious/db268969628794d04bb4e78d178f5cdb to your computer and use it in GitHub Desktop.
Save hyrious/db268969628794d04bb4e78d178f5cdb to your computer and use it in GitHub Desktop.
fix svg in github dark theme by give them white background
// ==UserScript==
// @name SVG Background White - github.com
// @namespace github-svg-background-color.hyrious.me
// @match https://github.com/*
// @grant none
// @version 1.0
// @author hyrious
// @description add img[src^="/"][src$=".svg"]{ background-color: white } to the page
// ==/UserScript==
(() => {
const style = document.createElement('style')
style.append('img[src^="/"][src$=".svg"]{ background-color: white }')
document.head.append(style)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment