Created
August 20, 2014 03:22
-
-
Save dipakcg/067d6a23ceccc39e8579 to your computer and use it in GitHub Desktop.
Change the Default Text Selection Color
This file contains 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
/* Add the below code in main stylesheet */ | |
/* ORANGE background and WHITE font-color */ | |
::-moz-selection { | |
background-color: #FF6200; | |
color: #FFFFFF; | |
} | |
::selection { | |
background-color: #FF6200; | |
color: #FFFFFF; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment