base16-ayu-mirage-theme.el (1014B)
1 ;; base16-ayu-mirage-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-mirage-theme-colors 15 '(:base00 "#171b24" 16 :base01 "#1f2430" 17 :base02 "#242936" 18 :base03 "#707a8c" 19 :base04 "#8a9199" 20 :base05 "#cccac2" 21 :base06 "#d9d7ce" 22 :base07 "#f3f4f5" 23 :base08 "#f28779" 24 :base09 "#ffad66" 25 :base0A "#ffd173" 26 :base0B "#d5ff80" 27 :base0C "#95e6cb" 28 :base0D "#5ccfe6" 29 :base0E "#d4bfff" 30 :base0F "#f29e74") 31 "All colors for Base16 Ayu Mirage are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-ayu-mirage) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-ayu-mirage base16-ayu-mirage-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-ayu-mirage) 41 42 (provide 'base16-ayu-mirage-theme) 43 44 ;;; base16-ayu-mirage-theme.el ends here