base16-silk-light-theme.el (1024B)
1 ;; base16-silk-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Gabriel Fontes (https://github.com/Misterio77) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-silk-light-theme-colors 15 '(:base00 "#e9f1ef" 16 :base01 "#ccd4d3" 17 :base02 "#90b7b6" 18 :base03 "#5c787b" 19 :base04 "#4b5b5f" 20 :base05 "#385156" 21 :base06 "#0e3c46" 22 :base07 "#d2faff" 23 :base08 "#cf432e" 24 :base09 "#d27f46" 25 :base0A "#cfad25" 26 :base0B "#6ca38c" 27 :base0C "#329ca2" 28 :base0D "#39aac9" 29 :base0E "#6e6582" 30 :base0F "#865369") 31 "All colors for Base16 Silk Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-silk-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-silk-light base16-silk-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-silk-light) 41 42 (provide 'base16-silk-light-theme) 43 44 ;;; base16-silk-light-theme.el ends here