You can make the color of a text passage change when it is selected on your page with the mouse. Just set the color values as you like.

/* Change the mouse selection styles */
::-moz-selection { 
   background: #000; 
   color:#fff; 
} 
::selection { 
   background: #000; 
   color:#fff;
}

Dir hat der Beitrag gefallen? Dann teile ihn gerne!