base16-horizon-terminal-light-theme.el (1133B)
1 ;; base16-horizon-terminal-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Michaƫl Ball (http://github.com/michael-ball/) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-horizon-terminal-light-theme-colors 15 '(:base00 "#fdf0ed" 16 :base01 "#fadad1" 17 :base02 "#f9cbbe" 18 :base03 "#bdb3b1" 19 :base04 "#948c8a" 20 :base05 "#403c3d" 21 :base06 "#302c2d" 22 :base07 "#201c1d" 23 :base08 "#e95678" 24 :base09 "#f9cec3" 25 :base0A "#fadad1" 26 :base0B "#29d398" 27 :base0C "#59e1e3" 28 :base0D "#26bbd9" 29 :base0E "#ee64ac" 30 :base0F "#f9cbbe") 31 "All colors for Base16 Horizon Terminal Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-horizon-terminal-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-horizon-terminal-light base16-horizon-terminal-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-horizon-terminal-light) 41 42 (provide 'base16-horizon-terminal-light-theme) 43 44 ;;; base16-horizon-terminal-light-theme.el ends here