Greasy Fork is available in English.

Bible Gateway dark theme

Bible Gateway dark theme night mode

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Bible Gateway dark theme 
// @namespace   english
// @description  Bible Gateway dark theme  night mode 
// @include     http*://*biblegateway.com* 
// @version     1.2
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// Main - redirect test 

//css color for added text - dark and light modes 

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML =   '      .page-col{filter: invert(1)hue-rotate(180deg);} .sys-announce{display:none  !important ;}    ' ;

document.getElementsByTagName('head')[0].appendChild(style);