i have an image in the background. i need to decide the color of some divs based on that. How can i achieve it directly in CSS instead of any script Or CSS framework
if (isBackImgTower){
color:#fff; //(then i want to apply the color #fff)
}
else{
color:#000;
}