anudit / darklms

Dark theme for Moodle LMS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dark theme for Moodle LMS

Installation

1st Method

  1. Install the Tampermonkey Chrome Extension

  2. Install the script from Greasy Fork (alternatively, insert a new Userscript into Tampermonkey and copy and paste in the script).

  3. With the Tampermonkey Script enabled, simply open LMS.

2nd Method

  1. Create a new Bookmark and copy and paste the folowing code in the address field.

    javascript: (function() { if (window.addCss !== undefined) { window.addCss(); } else { var ss = document.createElement('link'); ss.rel = "stylesheet"; ss.type = "text/css"; ss.href = "https://gitcdn.xyz/repo/anuditnagar/darklms/master/darklms.min.css"; document.head.appendChild(ss); } })();

  2. Click on the Bookmark to turn of the lights

About

Dark theme for Moodle LMS


Languages

Language:CSS 88.9%Language:JavaScript 11.1%