Skip to content

Instantly share code, notes, and snippets.

@vhchung
Created December 10, 2020 03:59
Show Gist options
  • Save vhchung/4d57a05972345bb4aafc53370f995860 to your computer and use it in GitHub Desktop.
Save vhchung/4d57a05972345bb4aafc53370f995860 to your computer and use it in GitHub Desktop.
Enable dark theme for dbdiagram.io
// ==UserScript==
// @name Dark theme dbdiagram.io
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @icon https://cdn.holistics.io/logo-dbdiagram-notext.ico
// @author You
// @match https://dbdiagram.io/d/*
// @require https://code.jquery.com/jquery-3.4.1.min.js
// @grant none
// ==/UserScript==
(function($, window, document) {
'use strict';
document.querySelector('html').setAttribute('data-theme', 'dark');
})(jQuery, window, document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment