base16-dirtysea-theme.el (980B)
1 ;; base16-dirtysea-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Kahlil (Kal) Hodgson 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-dirtysea-theme-colors 15 '(:base00 "#e0e0e0" 16 :base01 "#d0dad0" 17 :base02 "#d0d0d0" 18 :base03 "#707070" 19 :base04 "#202020" 20 :base05 "#000000" 21 :base06 "#f8f8f8" 22 :base07 "#c4d9c4" 23 :base08 "#840000" 24 :base09 "#006565" 25 :base0A "#755b00" 26 :base0B "#730073" 27 :base0C "#755b00" 28 :base0D "#007300" 29 :base0E "#000090" 30 :base0F "#755b00") 31 "All colors for Base16 dirtysea are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-dirtysea) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-dirtysea base16-dirtysea-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-dirtysea) 41 42 (provide 'base16-dirtysea-theme) 43 44 ;;; base16-dirtysea-theme.el ends here