base16-edge-light-theme.el (1016B)
1 ;; base16-edge-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: cjayross (https://github.com/cjayross) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-edge-light-theme-colors 15 '(:base00 "#fafafa" 16 :base01 "#7c9f4b" 17 :base02 "#d69822" 18 :base03 "#5e646f" 19 :base04 "#6587bf" 20 :base05 "#5e646f" 21 :base06 "#b870ce" 22 :base07 "#5e646f" 23 :base08 "#db7070" 24 :base09 "#db7070" 25 :base0A "#d69822" 26 :base0B "#7c9f4b" 27 :base0C "#509c93" 28 :base0D "#6587bf" 29 :base0E "#b870ce" 30 :base0F "#509c93") 31 "All colors for Base16 Edge Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-edge-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-edge-light base16-edge-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-edge-light) 41 42 (provide 'base16-edge-light-theme) 43 44 ;;; base16-edge-light-theme.el ends here