In SnowFlat qa-styles.css at line 1056 find below code
.qa-a-count-zero{
background-color: #e74c3c;
}
Replace color code to inherit or any code you want
.qa-a-count-zero{
background-color: inherit;
}
or just remove background-color property and it will take parent default color, which is blue
.qa-a-count-zero{}