base16-rose-pine-dawn-theme.el (1053B)
1 ;; base16-rose-pine-dawn-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Emilia Dunfelt <edun@dunfelt.se> 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-rose-pine-dawn-theme-colors 15 '(:base00 "#faf4ed" 16 :base01 "#fffaf3" 17 :base02 "#f2e9de" 18 :base03 "#9893a5" 19 :base04 "#797593" 20 :base05 "#575279" 21 :base06 "#575279" 22 :base07 "#cecacd" 23 :base08 "#b4637a" 24 :base09 "#ea9d34" 25 :base0A "#d7827e" 26 :base0B "#286983" 27 :base0C "#56949f" 28 :base0D "#907aa9" 29 :base0E "#ea9d34" 30 :base0F "#cecacd") 31 "All colors for Base16 Rosé Pine Dawn are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-rose-pine-dawn) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-rose-pine-dawn base16-rose-pine-dawn-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-rose-pine-dawn) 41 42 (provide 'base16-rose-pine-dawn-theme) 43 44 ;;; base16-rose-pine-dawn-theme.el ends here