base16-catppuccin-theme.el (1014B)
1 ;; base16-catppuccin-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: Pocco81 (https://github.com/pocco81) 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-catppuccin-theme-colors 15 '(:base00 "#1e1e28" 16 :base01 "#1a1826" 17 :base02 "#302d41" 18 :base03 "#575268" 19 :base04 "#6e6c7c" 20 :base05 "#d7dae0" 21 :base06 "#f5e0dc" 22 :base07 "#c9cbff" 23 :base08 "#f28fad" 24 :base09 "#f8bd96" 25 :base0A "#fae3b0" 26 :base0B "#abe9b3" 27 :base0C "#b5e8e0" 28 :base0D "#96cdfb" 29 :base0E "#ddb6f2" 30 :base0F "#f2cdcd") 31 "All colors for Base16 Catppuccin are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-catppuccin) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-catppuccin base16-catppuccin-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-catppuccin) 41 42 (provide 'base16-catppuccin-theme) 43 44 ;;; base16-catppuccin-theme.el ends here