base16-atlas-theme.el (965B)
1 ;; base16-atlas-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Alex Lende (https://ajlende.com) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-atlas-theme-colors 15 '(:base00 "#002635" 16 :base01 "#00384d" 17 :base02 "#517f8d" 18 :base03 "#6c8b91" 19 :base04 "#869696" 20 :base05 "#a1a19a" 21 :base06 "#e6e6dc" 22 :base07 "#fafaf8" 23 :base08 "#ff5a67" 24 :base09 "#f08e48" 25 :base0A "#ffcc1b" 26 :base0B "#7fc06e" 27 :base0C "#5dd7b9" 28 :base0D "#14747e" 29 :base0E "#9a70a4" 30 :base0F "#c43060") 31 "All colors for Base16 Atlas are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-atlas) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-atlas base16-atlas-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-atlas) 41 42 (provide 'base16-atlas-theme) 43 44 ;;; base16-atlas-theme.el ends here