base16-ayu-dark-theme.el (996B)
1 ;; base16-ayu-dark-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-dark-theme-colors 15 '(:base00 "#0f1419" 16 :base01 "#131721" 17 :base02 "#272d38" 18 :base03 "#3e4b59" 19 :base04 "#bfbdb6" 20 :base05 "#e6e1cf" 21 :base06 "#e6e1cf" 22 :base07 "#f3f4f5" 23 :base08 "#f07178" 24 :base09 "#ff8f40" 25 :base0A "#ffb454" 26 :base0B "#b8cc52" 27 :base0C "#95e6cb" 28 :base0D "#59c2ff" 29 :base0E "#d2a6ff" 30 :base0F "#e6b673") 31 "All colors for Base16 Ayu Dark are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-ayu-dark) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-ayu-dark base16-ayu-dark-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-ayu-dark) 41 42 (provide 'base16-ayu-dark-theme) 43 44 ;;; base16-ayu-dark-theme.el ends here