Advertisement
Guest User

UserStyle -- "Inversify Colors"

a guest
Jul 18th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.34 KB | None | 0 0
  1. /*![ UserStyle ~ "Inversify Colors" ~ https://rvklein.me/ ]!*/
  2.  
  3. html:root
  4. {
  5.     background-color: black ;
  6. }
  7.  
  8. html:root>head:first-child+body:nth-child(2)
  9. {
  10.     filter: invert( 1 ) hue-rotate( 180deg ) ;
  11. }
  12.  
  13. img,video,canvas,iframe
  14. {
  15.     -webkit-filter: invert( 1 ) hue-rotate( 180deg ) ;
  16.     filter: invert( 1 ) hue-rotate( 180deg ) ;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement