Heres a nice dark theme i made. I wanted something easier on the eyes.
I used the app fontcase so i could use the font Roboto Mono
make a new file called groovy black:
* groovy black
#+begin_src css
@include "Modern";
body {
background-color: #2c2c2c;
font-family: Roboto Mono;
color: #8f8f8f;
}
a {
color: darkseagreen;
text-decoration: none; /* This removes the underline */
}
h1, h2, h3, h4, h5, h6 {
color: orange;
ul, ol {
color: white;
}
#+end_src
and add a line in your init file to load it:
#+BEGIN_SRC scheme
(load-themes "groovy black")
#+END_SRC