Skip to content
Snippets Groups Projects
Commit e1fa3edf authored by deimios666's avatar deimios666
Browse files

Color theme fix for gradients

parent 2ee0c6fb
No related branches found
No related tags found
1 merge request!2329Flipped color theme fix for image gradients
:: colorModeJS [script]
window.setColors = function(colorMap){
let props = ["color","backgroundColor","backgroundImage"];
let styleSheetArray = Array.from(document.styleSheets);
styleSheetArray.forEach( styleSheet => {
let cssRules = Array.from(styleSheet.cssRules);
cssRules.forEach( cssRule => {
if ( cssRule.type === 1 ){
let color = cssRule.style.color;
let bgcolor = cssRule.style.backgroundColor;
if (
color != "" &&
color != "inherit" ){
cssRule.style.color = colorMap[color] || color;
console.log('color: ',color);
}
if (
bgcolor != "" &&
bgcolor != "inherit" &&
bgcolor != "transparent" ){
cssRule.style.backgroundColor = colorMap[bgcolor] || bgcolor;
console.log('color: ',color);
}
props.forEach( propName => {
let currentValue = cssRule.style[propName];
if (
currentValue != "" &&
currentValue != "inherit" &&
currentValue != "transparent"){
cssRule.style[propName] = colorMap[currentValue] || currentValue;
}
})
}
});
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment