I got this css class (its applied on the body) and i don't wan't to invert the color of the images. how can i prevent this?
.dark{
filter: invert(1);
background-color: #222;
}
CodePudding user response:
Try using :not
selector. ......