base16-catppuccin-frappe-theme.el (1081B)
1 ;; base16-catppuccin-frappe-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-frappe-theme-colors 15 '(:base00 "#303446" 16 :base01 "#292c3c" 17 :base02 "#414559" 18 :base03 "#51576d" 19 :base04 "#626880" 20 :base05 "#c6d0f5" 21 :base06 "#f2d5cf" 22 :base07 "#babbf1" 23 :base08 "#e78284" 24 :base09 "#ef9f76" 25 :base0A "#e5c890" 26 :base0B "#a6d189" 27 :base0C "#81c8be" 28 :base0D "#8caaee" 29 :base0E "#ca9ee6" 30 :base0F "#eebebe") 31 "All colors for Base16 Catppuccin Frappe are defined here.") 32 33 ;; Define the theme 34 (deftheme base16-catppuccin-frappe) 35 36 ;; Add all the faces to the theme 37 (base16-theme-define 'base16-catppuccin-frappe base16-catppuccin-frappe-theme-colors) 38 39 ;; Mark the theme as provided 40 (provide-theme 'base16-catppuccin-frappe) 41 42 (provide 'base16-catppuccin-frappe-theme) 43 44 ;;; base16-catppuccin-frappe-theme.el ends here