biblehub.com change red letter text to black

Makes the words of Christ appear in black color text rather than red.

// ==UserScript==
// @name         biblehub.com change red letter text to black
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Makes the words of Christ appear in black color text rather than red.
// @author       Joshua Witt [email protected]
// @match        https://biblehub.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=biblehub.com
// @grant        none
// @license      MIT
// ==/UserScript==
/* globals $$, waitForKeyElements */
(function() {
    'use strict';
    //find all paragraphs that have red in the classname and change the text color to black.
    document.querySelectorAll('p,span').forEach(function(paragraph){paragraph.className.includes('red') ? paragraph.style.color='black' : Function.prototype(); } );
})();