Skip to content

CSS code snippet – How to change highlight color on website?

::-moz-selection { 
background-color: #BA9EB0; 
color: #ffffff;
}
::selection {
background-color: #BA9EB0;
color: #ffffff;
}
See also  How to make a random variable in Python?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.