Last active
October 31, 2018 23:41
-
-
Save facelordgists/5409695 to your computer and use it in GitHub Desktop.
CSS: text highlight color.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Control what text looks like when it's highlighted | |
::-moz-selection { | |
background: #5af; | |
color: #fff; | |
text-shadow: none; | |
} | |
::selection { | |
background: #5af; | |
color: #fff; | |
text-shadow: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment