base16-nord-light-theme.el (1052B)
1 ;; base16-nord-light-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: threddast, based on fuxialexander's doom-nord-light-theme (Doom Emacs) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-nord-light-theme-colors 15 '(:base00 "#e5e9f0" 16 :base01 "#c2d0e7" 17 :base02 "#b8c5db" 18 :base03 "#aebacf" 19 :base04 "#60728c" 20 :base05 "#2e3440" 21 :base06 "#3b4252" 22 :base07 "#29838d" 23 :base08 "#99324b" 24 :base09 "#ac4426" 25 :base0A "#9a7500" 26 :base0B "#4f894c" 27 :base0C "#398eac" 28 :base0D "#3b6ea8" 29 :base0E "#97365b" 30 :base0F "#5272af") 31 "All colors for Base16 Nord Light are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-nord-light) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-nord-light base16-nord-light-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-nord-light) 41 42 (provide 'base16-nord-light-theme) 43 44 ;;; base16-nord-light-theme.el ends here