Skip to content

Instantly share code, notes, and snippets.

@metaquanta
Created January 17, 2021 20:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metaquanta/7368ac68defba7abc935a1cce501bbf2 to your computer and use it in GitHub Desktop.
Save metaquanta/7368ac68defba7abc935a1cce501bbf2 to your computer and use it in GitHub Desktop.
Fix GitHub Gist's dark mode
// ==UserScript==
// @name dark mode - gist.github.com
// @namespace Violentmonkey Scripts
// @match https://gist.github.com/*
// @grant none
// @version 1.0
// @author m@metaquanta.com
// @description 1/15/2021: Gist deserves the same dark mode as GitHub.
// ==/UserScript==
document.firstElementChild.setAttribute("data-color-mode", "dark");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment