base16-ocean-theme.el (972B)
1 ;; base16-ocean-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Chris Kempson (http://chriskempson.com) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-ocean-theme-colors 15 '(:base00 "#2b303b" 16 :base01 "#343d46" 17 :base02 "#4f5b66" 18 :base03 "#65737e" 19 :base04 "#a7adba" 20 :base05 "#c0c5ce" 21 :base06 "#dfe1e8" 22 :base07 "#eff1f5" 23 :base08 "#bf616a" 24 :base09 "#d08770" 25 :base0A "#ebcb8b" 26 :base0B "#a3be8c" 27 :base0C "#96b5b4" 28 :base0D "#8fa1b3" 29 :base0E "#b48ead" 30 :base0F "#ab7967") 31 "All colors for Base16 Ocean are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-ocean) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-ocean base16-ocean-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-ocean) 41 42 (provide 'base16-ocean-theme) 43 44 ;;; base16-ocean-theme.el ends here