Here are my Emacs themes (dark, dark blue, dark gray, light, material dark, and material light). Material dark and material light themes are using material design colors. Others use groups of HSL colors where each group have the same saturation and luminance components (the parameters of each group can be adjusted in the source of each theme function).
Screenshots are available here.
First clone the repository
$ cd ~/.emacs.d/
$ git clone https://github.com/lukpank/lupan-themes/
and then for the dark variant add to your ~/.emacs.d/init.el
file
the following lines
(add-to-list 'load-path (expand-file-name "~/.emacs.d/lupan-themes/") t)
(require 'lupan-themes)
(load-theme 'lupan-dark t)
for other variants replace lupan-dark
with one of lupan-dark-blue
,
lupan-dark-gray
, lupan-light
, lupan-material-dark
, or
lupan-material-light
.