base16-vice-theme.el (965B)
1 ;; base16-vice-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Thomas Leon Highbaugh thighbaugh@zoho.com 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-vice-theme-colors 15 '(:base00 "#17191e" 16 :base01 "#22262d" 17 :base02 "#3c3f4c" 18 :base03 "#383a47" 19 :base04 "#555e70" 20 :base05 "#8b9cbe" 21 :base06 "#b2bfd9" 22 :base07 "#f4f4f7" 23 :base08 "#ff29a8" 24 :base09 "#85ffe0" 25 :base0A "#f0ffaa" 26 :base0B "#0badff" 27 :base0C "#8265ff" 28 :base0D "#00eaff" 29 :base0E "#00f6d9" 30 :base0F "#ff3d81") 31 "All colors for Base16 vice are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-vice) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-vice base16-vice-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-vice) 41 42 (provide 'base16-vice-theme) 43 44 ;;; base16-vice-theme.el ends here