base16-solarized-light-theme.el (1066B)
1 ;; base16-solarized-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Ethan Schoonover (modified by aramisgithub) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-solarized-light-theme-colors 15 '(:base00 "#fdf6e3" 16 :base01 "#eee8d5" 17 :base02 "#93a1a1" 18 :base03 "#839496" 19 :base04 "#657b83" 20 :base05 "#586e75" 21 :base06 "#073642" 22 :base07 "#002b36" 23 :base08 "#dc322f" 24 :base09 "#cb4b16" 25 :base0A "#b58900" 26 :base0B "#859900" 27 :base0C "#2aa198" 28 :base0D "#268bd2" 29 :base0E "#6c71c4" 30 :base0F "#d33682") 31 "All colors for Base16 Solarized Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-solarized-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-solarized-light base16-solarized-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-solarized-light) 41 42 (provide 'base16-solarized-light-theme) 43 44 ;;; base16-solarized-light-theme.el ends here