Created
March 12, 2020 03:41
-
-
Save yoosefi/b883a12ba48f9e76abd7d5795f10bb7c to your computer and use it in GitHub Desktop.
dark theme for doxygen 1.8
This file contains 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
/** | |
put this in your working directory and set the config option: | |
HTML_EXTRA_STYLESHEET=dark.css | |
*/ | |
* { | |
background:black !important; | |
color:white !important; | |
font-family:monospace !important; | |
font-size:14pt !important; | |
text-shadow:none !important; | |
} | |
body { | |
margin:0; | |
} | |
a { | |
color:#0af !important; | |
} | |
div.fragment { | |
padding:1em; | |
margin:1em 1em 1em 0; | |
} | |
#nav-tree .label a.nolink { | |
color:#fa0 !important; /* dir links */ | |
} | |
#nav-tree .label a.nolink::before { | |
content: "::"; /* namespace-dirs */ | |
} | |
#projectlogo img { | |
width:100px; | |
} | |
#projectname { | |
font-size:300% !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@doxygen