base16-shades-of-purple-theme.el (1173B)
1 ;; base16-shades-of-purple-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-shades-of-purple-theme-colors 15 '(:base00 "#1e1e3f" 16 :base01 "#43d426" 17 :base02 "#f1d000" 18 :base03 "#808080" 19 :base04 "#6871ff" 20 :base05 "#c7c7c7" 21 :base06 "#ff77ff" 22 :base07 "#ffffff" 23 :base08 "#d90429" 24 :base09 "#f92a1c" 25 :base0A "#ffe700" 26 :base0B "#3ad900" 27 :base0C "#00c5c7" 28 :base0D "#6943ff" 29 :base0E "#ff2c70" 30 :base0F "#79e8fb") 31 "All colors for Base16 Shades of Purple are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-shades-of-purple) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-shades-of-purple base16-shades-of-purple-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-shades-of-purple) 41 42 (provide 'base16-shades-of-purple-theme) 43 44 ;;; base16-shades-of-purple-theme.el ends here