Skip to content

Instantly share code, notes, and snippets.

@brianbroken
Created April 27, 2013 00:07
Show Gist options
  • Select an option

  • Save brianbroken/5471266 to your computer and use it in GitHub Desktop.

Select an option

Save brianbroken/5471266 to your computer and use it in GitHub Desktop.
CSS: text selection colour
/* Mozilla based browsers */
::-moz-selection {
background-color: #FFA;
color: #000;
}
/* Works in Safari */
::selection {
background-color: #FFA;
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment