Hello,
I am seeing an error in my browser console:
Invalid color value provided to Reftagger. Must be in hex format.
Here is my JS code:
var refTagger = {
settings: {
bibleVersion: "NIV",
roundCorners: true,
socialSharing: ["google"],
tagChapters: true,
noSearchClassNames: ["grade"],
customStyle : {
heading: {
backgroundColor : "#91AB1D",
color : "#000000"
},
body : {
color : "#000000"
}
}
}
};
(function(d, t) {
var n=d.querySelector("[nonce]");
refTagger.settings.nonce = n && (n.nonce||n.getAttribute("nonce"));
var g = d.createElement(t), s = d.getElementsByTagName(t)[0];
g.src = "https://api.reftagger.com/v2/RefTagger.js";
g.nonce = refTagger.settings.nonce;
s.parentNode.insertBefore(g, s);
}(document, "script"));
Any idea what's causing that error? Thanks