base16-bright-theme.el (981B)
1 ;; base16-bright-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Chris Kempson (http://chriskempson.com) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-bright-theme-colors 15 '(:base00 "#000000" 16 :base01 "#303030" 17 :base02 "#505050" 18 :base03 "#b0b0b0" 19 :base04 "#d0d0d0" 20 :base05 "#e0e0e0" 21 :base06 "#f5f5f5" 22 :base07 "#ffffff" 23 :base08 "#fb0120" 24 :base09 "#fc6d24" 25 :base0A "#fda331" 26 :base0B "#a1c659" 27 :base0C "#76c7b7" 28 :base0D "#6fb3d2" 29 :base0E "#d381c3" 30 :base0F "#be643c") 31 "All colors for Base16 Bright are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-bright) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-bright base16-bright-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-bright) 41 42 (provide 'base16-bright-theme) 43 44 ;;; base16-bright-theme.el ends here