Skip to content
/ emacs Public
forked from catppuccin/emacs

🍄 Soothing pastel theme for Emacs

License

Notifications You must be signed in to change notification settings

scaevola/emacs

 
 

Repository files navigation

Logo
Catppuccin for Emacs

About

This Emacs theme was made with the Dracula theme as a base.

Previews

🌻 Latte
🪴 Frappé
🌺 Macchiato
🌿 Mocha

Installation

Emacs

  1. Download catppuccin-theme.el into .emacs.d/themes
  2. Add the following to your init.el
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'catppuccin t)

Doom Emacs

  1. Download catppuccin-theme.el into .doom.d/themes
  2. Add the following to your config.el
(setq doom-theme 'catppuccin)

Configuration

The default flavour is Mocha, to change the flavor, place the following in your init.el or config.el after loading the theme

(setq catppuccin-flavor 'frappe) ;; or 'latte, 'macchiato, or 'mocha
(catppuccin-reload)

The theme can also be customzied further by changing individual colors. Doom users must call (load-theme 'catppuccin t t) before being able to call any of the catppuccin-* functions.

(catppuccin-set-color 'base "#000000") ;; change base to #000000 for the currently active flavor
(catppuccin-set-color 'crust "#222222" 'frappe) ;; change crust to #222222 for frappe
(catppuccin-reload)

💝 Thanks to

 

Copyright © 2021-present Catppuccin Org

About

🍄 Soothing pastel theme for Emacs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Emacs Lisp 99.6%
  • Just 0.4%