See live preview.
Download the stylesheet
If you are using gradle, add below to javadoc options:
javadoc {
options.stylesheetFile = new File(projectDir, "path/to/your/resource/dracula-javadoc8.css")
// And some options...
}
If you are using maven, add below to plugin option:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<stylesheetfile>path/to/your/resource/dracula-javadoc8.css</stylesheetfile>
...
</configuration>
</plugin>