base16-codeschool-theme.el (987B)
1 ;; base16-codeschool-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: blockloop 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-codeschool-theme-colors 15 '(:base00 "#232c31" 16 :base01 "#1c3657" 17 :base02 "#2a343a" 18 :base03 "#3f4944" 19 :base04 "#84898c" 20 :base05 "#9ea7a6" 21 :base06 "#a7cfa3" 22 :base07 "#b5d8f6" 23 :base08 "#2a5491" 24 :base09 "#43820d" 25 :base0A "#a03b1e" 26 :base0B "#237986" 27 :base0C "#b02f30" 28 :base0D "#484d79" 29 :base0E "#c59820" 30 :base0F "#c98344") 31 "All colors for Base16 Codeschool are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-codeschool) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-codeschool base16-codeschool-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-codeschool) 41 42 (provide 'base16-codeschool-theme) 43 44 ;;; base16-codeschool-theme.el ends here