base16-ayu-light-theme.el (1005B)
1 ;; base16-ayu-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Khue Nguyen <Z5483Y@gmail.com> 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-ayu-light-theme-colors 15 '(:base00 "#fafafa" 16 :base01 "#f3f4f5" 17 :base02 "#f8f9fa" 18 :base03 "#abb0b6" 19 :base04 "#828c99" 20 :base05 "#5c6773" 21 :base06 "#242936" 22 :base07 "#1a1f29" 23 :base08 "#f07178" 24 :base09 "#fa8d3e" 25 :base0A "#f2ae49" 26 :base0B "#86b300" 27 :base0C "#4cbf99" 28 :base0D "#36a3d9" 29 :base0E "#a37acc" 30 :base0F "#e6ba7e") 31 "All colors for Base16 Ayu Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-ayu-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-ayu-light base16-ayu-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-ayu-light) 41 42 (provide 'base16-ayu-light-theme) 43 44 ;;; base16-ayu-light-theme.el ends here