base16-saga-theme.el (957B)
1 ;; base16-saga-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: https://github.com/SAGAtheme/SAGA 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-saga-theme-colors 15 '(:base00 "#05080a" 16 :base01 "#0a1014" 17 :base02 "#0f181e" 18 :base03 "#141f27" 19 :base04 "#192630" 20 :base05 "#dce2f7" 21 :base06 "#f8eae7" 22 :base07 "#ccd3fe" 23 :base08 "#ffd4e9" 24 :base09 "#fbcbae" 25 :base0A "#fbebc8" 26 :base0B "#f7ddff" 27 :base0C "#c5edc1" 28 :base0D "#c9fff7" 29 :base0E "#dcc3f9" 30 :base0F "#f6dddd") 31 "All colors for Base16 SAGA are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-saga) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-saga base16-saga-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-saga) 41 42 (provide 'base16-saga-theme) 43 44 ;;; base16-saga-theme.el ends here