I'm looking for a tool that helps me to identify CSS color properties (color, background-color, border-color etc.) and combined the selectors instead of repeating the color property over and over.
so a code like this:
body {color: #656565;}
a {color: #c0c0c0;}
h1 {color: #000;}
.norm-element {color: #656565;}
.accent-element {color: #c0c0c0;}
would end:
body, .norm-element {
color: #656565;
}
a, .accent-element {
color: #c0c0c0;
}
h1 { color: #000; }