Skip to content

Instantly share code, notes, and snippets.

@yoosefi
Created March 12, 2020 03:41
Show Gist options
  • Save yoosefi/b883a12ba48f9e76abd7d5795f10bb7c to your computer and use it in GitHub Desktop.
Save yoosefi/b883a12ba48f9e76abd7d5795f10bb7c to your computer and use it in GitHub Desktop.
dark theme for doxygen 1.8
/**
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;
}
@yoosefi
Copy link
Author

yoosefi commented Mar 12, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment