Skip to content

Instantly share code, notes, and snippets.

@facelordgists
Last active October 31, 2018 23:41
Show Gist options
  • Save facelordgists/5409695 to your computer and use it in GitHub Desktop.
Save facelordgists/5409695 to your computer and use it in GitHub Desktop.
CSS: text highlight color.css
// 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