base16-heetch-theme.el (980B)
1 ;; base16-heetch-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Geoffrey Teale (tealeg@gmail.com) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-heetch-theme-colors 15 '(:base00 "#190134" 16 :base01 "#392551" 17 :base02 "#5a496e" 18 :base03 "#7b6d8b" 19 :base04 "#9c92a8" 20 :base05 "#bdb6c5" 21 :base06 "#dedae2" 22 :base07 "#feffff" 23 :base08 "#27d9d5" 24 :base09 "#5ba2b6" 25 :base0A "#8f6c97" 26 :base0B "#c33678" 27 :base0C "#f80059" 28 :base0D "#bd0152" 29 :base0E "#82034c" 30 :base0F "#470546") 31 "All colors for Base16 Heetch Dark are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-heetch) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-heetch base16-heetch-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-heetch) 41 42 (provide 'base16-heetch-theme) 43 44 ;;; base16-heetch-theme.el ends here