Skip to content

Commit

Permalink
Use custom text selection colors
Browse files Browse the repository at this point in the history
  • Loading branch information
dguo committed May 28, 2018
1 parent d8f81fa commit b6426c1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions static/css/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ $github-black: #24292e;
clear: both;
}

/* https://css-tricks.com/overriding-the-default-text-selection-color-with-css/ */
::selection {
background-color: #C40233;
color: #FFF;
}
::-moz-selection {
background-color: #C40233;
color: #FFF;
}

h1 {
color: #009F6B;
}
Expand Down

0 comments on commit b6426c1

Please sign in to comment.