base16-unikitty-dark-theme.el (1031B)
1 ;; base16-unikitty-dark-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Josh W Lewis (@joshwlewis) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-unikitty-dark-theme-colors 15 '(:base00 "#2e2a31" 16 :base01 "#4a464d" 17 :base02 "#666369" 18 :base03 "#838085" 19 :base04 "#9f9da2" 20 :base05 "#bcbabe" 21 :base06 "#d8d7da" 22 :base07 "#f5f4f7" 23 :base08 "#d8137f" 24 :base09 "#d65407" 25 :base0A "#dc8a0e" 26 :base0B "#17ad98" 27 :base0C "#149bda" 28 :base0D "#796af5" 29 :base0E "#bb60ea" 30 :base0F "#c720ca") 31 "All colors for Base16 Unikitty Dark are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-unikitty-dark) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-unikitty-dark base16-unikitty-dark-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-unikitty-dark) 41 42 (provide 'base16-unikitty-dark-theme) 43 44 ;;; base16-unikitty-dark-theme.el ends here