;; base16-eldritch-theme.el -- A base16 colorscheme ;;; Commentary: ;; Base16: (https://github.com/tinted-theming/home) ;;; Authors: ;; Scheme: Jan T. Sott (http://github.com/idleberg) ;; Template: Kaleb Elwert ;;; Code: (require 'base16-theme) (defvar base16-eldritch-theme-colors '(:base00 "#212337" :base01 "#292E42" :base02 "#323449" :base03 "#7081d0" :base04 "#b5b2b2" :base05 "#a48cf2" :base06 "#ebfafa" :base07 "#f7f7f7" :base08 "#f265b5" :base09 "#f16c75" :base0A "#05e8fc" :base0B "#f1fc79" :base0C "#7081d0" :base0D "#37f499" :base0E "#04d1f9" :base0F "#f1fc79") "All colors for Base16 eldritch are defined here.") ;; '(:base00 "#242137" ;; :base01 "#22173b" ;; :base02 "#32333d" ;; :base03 "#7081d0" ;; :base04 "#ebfafa" ;; :base05 "#b5b2b2" ;; :base06 "#ebfafa" ;; :base07 "#f7f7f7" ;; :base08 "#04d1f9" ;; :base09 "#e8bbd0" ;; :base0A "#f9515d" ;; :base0B "#9071f4" ;; :base0C "#f265b5" ;; :base0D "#37f499" ;; :base0E "#f16c75" ;; :base0F "#f1fc79") ;; Define the theme (deftheme base16-eldritch) ;; Add all the faces to the theme (base16-theme-define 'base16-eldritch base16-eldritch-theme-colors) ;; Mark the theme as provided (provide-theme 'base16-eldritch) (provide 'base16-eldritch-theme) ;;; base16-eldritch-theme.el ends here