base16-catppuccin-mocha-theme.el (1072B)
1 ;; base16-catppuccin-mocha-theme.el -- A base16 colorscheme 2 3 ;;; Commentary: 4 ;; Base16: (https://github.com/tinted-theming/home) 5 6 ;;; Authors: 7 ;; Scheme: https://github.com/catppuccin/catppuccin 8 ;; Template: Kaleb Elwert <belak@coded.io> 9 10 ;;; Code: 11 12 (require 'base16-theme) 13 14 (defvar base16-catppuccin-mocha-theme-colors 15 '(:base00 "#1e1e2e" 16 :base01 "#181825" 17 :base02 "#313244" 18 :base03 "#45475a" 19 :base04 "#585b70" 20 :base05 "#cdd6f4" 21 :base06 "#f5e0dc" 22 :base07 "#b4befe" 23 :base08 "#f38ba8" 24 :base09 "#fab387" 25 :base0A "#f9e2af" 26 :base0B "#a6e3a1" 27 :base0C "#94e2d5" 28 :base0D "#89b4fa" 29 :base0E "#cba6f7" 30 :base0F "#f2cdcd") 31 "All colors for Base16 Catppuccin Mocha are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-catppuccin-mocha) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-catppuccin-mocha base16-catppuccin-mocha-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-catppuccin-mocha) 41 42 (provide 'base16-catppuccin-mocha-theme) 43 44 ;;; base16-catppuccin-mocha-theme.el ends here