base16-dracula-theme.el (1045B)
1 ;; base16-dracula-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Jamy Golden (http://github.com/JamyGolden), based on Dracula Theme (http://github.com/dracula) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-dracula-theme-colors 15 '(:base00 "#282a36" 16 :base01 "#363447" 17 :base02 "#44475a" 18 :base03 "#6272a4" 19 :base04 "#9ea8c7" 20 :base05 "#f8f8f2" 21 :base06 "#f0f1f4" 22 :base07 "#ffffff" 23 :base08 "#ff5555" 24 :base09 "#ffb86c" 25 :base0A "#f1fa8c" 26 :base0B "#50fa7b" 27 :base0C "#8be9fd" 28 :base0D "#80bfff" 29 :base0E "#ff79c6" 30 :base0F "#bd93f9") 31 "All colors for Base16 Dracula are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-dracula) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-dracula base16-dracula-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-dracula) 41 42 (provide 'base16-dracula-theme) 43 44 ;;; base16-dracula-theme.el ends here