css change selected text color code example
Example 1: change highlight color html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
Example 2: css selected color
::selection {
background-color: #222;
color: white;
}