Default Text Selection Color in WordPress
How to change the default text selection color in any WordPress theme.
You know what makes your website’s design stand out? Attention to details.
Open your style.css file OR Goto Customize > Additional CSS and add the following styles:
1
2
3
4
5
6
7
8
9
|
::-moz-selection { background-color : #ff6200 ; color : #fff ; } ::selection { background-color : #ff6200 ; color : #fff ; } |
Example colors:
Light Yellow #f5eca6
Orange #ff6200