base16-katy-theme.el (964B)
1 ;; base16-katy-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: George Essig (https://github.com/gessig) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-katy-theme-colors 15 '(:base00 "#292d3e" 16 :base01 "#444267" 17 :base02 "#5c598b" 18 :base03 "#676e95" 19 :base04 "#8796b0" 20 :base05 "#959dcb" 21 :base06 "#959dcb" 22 :base07 "#ffffff" 23 :base08 "#6e98e1" 24 :base09 "#f78c6c" 25 :base0A "#e0a557" 26 :base0B "#78c06e" 27 :base0C "#83b7e5" 28 :base0D "#82aaff" 29 :base0E "#c792ea" 30 :base0F "#ff5370") 31 "All colors for Base16 Katy are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-katy) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-katy base16-katy-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-katy) 41 42 (provide 'base16-katy-theme) 43 44 ;;; base16-katy-theme.el ends here