Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var color=[]
var selector=['color','backgroundColor','borderTopColor','borderBottomColor','borderLeftColor','borderRightColor']
for (var i=0,l=document.styleSheets.length;i<3;i++) {
for (var j=0,m=document.styleSheets[i].cssRules.length;j<m;j++) {
if (document.styleSheets[i].cssRules[j].type==CSSRule.STYLE_RULE) {
for (var e=0,n=selector.length;e<n;e++) {
if (document.styleSheets[i].cssRules[j].style[selector[e]] && document.styleSheets[i].cssRules[j].style[selector[e]]!='transparent') {
color.push(document.styleSheets[i].cssRules[j].style[selector[e]])
}
}
}
}
}
alert(color.join('\n'))