Last active
June 11, 2020 14:31
-
-
Save marekjm/540e592beae45f2cc25638f953daf5ac to your computer and use it in GitHub Desktop.
Dark realworldocaml.org
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
html, body { | |
background-color: #000; | |
color: #e0e0e0; | |
} | |
div.wrap { | |
background-color: #1a1a1a; | |
} | |
div.wrap h1, div.wrap h2, div.wrap h3, div.wrap h4, div.wrap h5 { | |
color: #caaa00; | |
} | |
div.wrap code { | |
color: #8aea00; | |
} | |
div.wrap a { | |
color: #fff; | |
text-decoration: underline; | |
} | |
div.wrap a:hover { | |
color: #fff; | |
} | |
div.code-toolbar, pre[class*="language-"] { | |
background-color: #000; | |
} | |
code[class*="language-"] { | |
text-shadow: 0 0 transparent; | |
} | |
code[class*="language-"] span.token { | |
background-color: transparent; | |
} | |
div.wrap ul.toc-full li ul.children a { | |
color: #fff; | |
text-decoration: underline; | |
} | |
div.wrap ul.toc-full li ul.children a:hover { | |
color: #fff; | |
} | |
section table tr:nth-child(2n) td { | |
background-color: #0f0f0f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment