base16-colors-theme.el (964B)
1 ;; base16-colors-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: mrmrs (http://clrs.cc) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-colors-theme-colors 15 '(:base00 "#111111" 16 :base01 "#333333" 17 :base02 "#555555" 18 :base03 "#777777" 19 :base04 "#999999" 20 :base05 "#bbbbbb" 21 :base06 "#dddddd" 22 :base07 "#ffffff" 23 :base08 "#ff4136" 24 :base09 "#ff851b" 25 :base0A "#ffdc00" 26 :base0B "#2ecc40" 27 :base0C "#7fdbff" 28 :base0D "#0074d9" 29 :base0E "#b10dc9" 30 :base0F "#85144b") 31 "All colors for Base16 Colors are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-colors) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-colors base16-colors-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-colors) 41 42 (provide 'base16-colors-theme) 43 44 ;;; base16-colors-theme.el ends here