Skip to content

Instantly share code, notes, and snippets.

@banterability
Created May 18, 2010 23:33
Show Gist options
  • Save banterability/405721 to your computer and use it in GitHub Desktop.
Save banterability/405721 to your computer and use it in GitHub Desktop.
custom text selection colors
/*
dribbble custom selection css
from http://dribbble.com/stylesheets/master.css
*/
/* custom selection colors */
::-moz-selection {
color: #fff;
color: rgba(255,255,255,.85);
background: #ea4c88;
}
::selection {
color: #fff;
color: rgba(255,255,255,.85);
background: #ea4c88;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment