base16-gigavolt-theme.el (1002B)
1 ;; base16-gigavolt-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Aidan Swope (http://github.com/Whillikers) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-gigavolt-theme-colors 15 '(:base00 "#202126" 16 :base01 "#2d303d" 17 :base02 "#5a576e" 18 :base03 "#a1d2e6" 19 :base04 "#cad3ff" 20 :base05 "#e9e7e1" 21 :base06 "#eff0f9" 22 :base07 "#f2fbff" 23 :base08 "#ff661a" 24 :base09 "#19f988" 25 :base0A "#ffdc2d" 26 :base0B "#f2e6a9" 27 :base0C "#fb6acb" 28 :base0D "#40bfff" 29 :base0E "#ae94f9" 30 :base0F "#6187ff") 31 "All colors for Base16 Gigavolt are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-gigavolt) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-gigavolt base16-gigavolt-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-gigavolt) 41 42 (provide 'base16-gigavolt-theme) 43 44 ;;; base16-gigavolt-theme.el ends here