The checkbox in IE and chrome looks different.
Chrome
You can use "filter: brightness" which doesn't work in IE so it doesn't affect IE but can make the chrome checkbox and radio buttons look almost white with something like this:
input[type="checkbox"],
input[type="radio"] {
filter: brightness(1.2);
}
/* Set disabled back to grey */
input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
filter: brightness(0.9);
}