before | after |
---|---|
![]() |
![]() |
Last active
January 27, 2021 03:02
-
-
Save micalevisk/7cdbb40e9cf92e7c5b1563e7f79fe2d3 to your computer and use it in GitHub Desktop.
RFC (https://tools.ietf.org) dark mode. Use https://addons.mozilla.org/pt-BR/firefox/addon/codeinjector and add this rule.
This file contains hidden or 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
/* dark mode RFC by @micalevisk */ | |
body { | |
background: #010409; | |
color: #c9d1d9; | |
} | |
span.docinfo { | |
background-color: rgba(240,246,252,0.15) !important; | |
} | |
a:link { | |
color: #58a6ff; | |
background-color: transparent; | |
text-decoration: none; | |
} | |
a:visited { | |
color: pink; | |
background-color: transparent; | |
text-decoration: none; | |
} | |
a:hover { | |
color: rgba(152, 206, 255, 0.51); | |
background-color: transparent; | |
text-decoration: underline; | |
} | |
a:active { | |
color: yellow; | |
background-color: transparent; | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment