base16-purpledream-theme.el (992B)
1 ;; base16-purpledream-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: malet 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-purpledream-theme-colors 15 '(:base00 "#100510" 16 :base01 "#302030" 17 :base02 "#403040" 18 :base03 "#605060" 19 :base04 "#bbb0bb" 20 :base05 "#ddd0dd" 21 :base06 "#eee0ee" 22 :base07 "#fff0ff" 23 :base08 "#ff1d0d" 24 :base09 "#ccae14" 25 :base0A "#f000a0" 26 :base0B "#14cc64" 27 :base0C "#0075b0" 28 :base0D "#00a0f0" 29 :base0E "#b000d0" 30 :base0F "#6a2a3c") 31 "All colors for Base16 Purpledream are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-purpledream) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-purpledream base16-purpledream-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-purpledream) 41 42 (provide 'base16-purpledream-theme) 43 44 ;;; base16-purpledream-theme.el ends here