By text highlighting, I am referring to highlighting text on a website with the mouse, and it displays white text and blue highlight.
Well, I was trying to change it, and it works perfectly on all other browsers, but Chrome makes the highlight too dark.
How can I fix this? Thank you, and my apologies for the idiotic question.
Edit: I know it's possible, because this site managed to do it. http://www.codeitpretty.com/
This is how it looks on Chrome
This is how it looks on Firefox and others
::-moz-selection {
background-color: #694489;
color: #000;
}
::selection {
background-color: #694489;
color: #000;
}
::-webkit-selection {
background-color: #694489;
color: #000;
}