copy text color change in html code example
Example 1: change highlight color html
::-moz-selection { /* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
Example 2: random text color change in html
var randomColor = Math.floor(Math.random()*16777215).toString(16);