Skip to content

habamax/wildcharm-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

wildcharm-theme

Dark and light Emacs themes based on vim-wildcharm.

Should look mostly the same in GUI and TUI (terminal with 256 color support).

image

image

Installation

Available on MELPA:

(add-to-list 'package-archives
             '("melpa" . "https://melpa.org/packages/") 'append)
  • M-x package-install RET wildcharm-theme RET or
  • M-x package-install RET wildcharm-light-theme RET

Setup

No theme specific options are exposed, use regular Emacs elisp if needed, for example:

(use-package wildcharm-theme
  :init
  (load-theme 'wildcharm t)
  :custom-face
  ;; org header sizes
  (org-level-1 ((t (:height 1.6))))
  (org-level-2 ((t (:height 1.4))))
  (org-level-3 ((t (:height 1.2))))
  ;; italic comments
  (font-lock-comment-face ((t (:slant italic)))))

or

(use-package wildcharm-light-theme
  :init
  (load-theme 'wildcharm-light t)
  :custom-face
  ;; org header sizes
  (org-level-1 ((t (:height 1.6))))
  (org-level-2 ((t (:height 1.4))))
  (org-level-3 ((t (:height 1.2))))
  ;; italic comments
  (font-lock-comment-face ((t (:slant italic)))))

Main colors

Dark

Color RGB Color RGB
Black #000000 #000000 Dark Grey #808080 #808080
Red #D75F5F #D75F5F Bright Red #FF5F87 #FF5F87
Green #00AF5F #00AF5F Bright Green #00D75F #00D75F
Yellow #D78700 #D78700 Bright Yellow #FFAF00 #FFAF00
Blue #0087D7 #0087D7 Bright Blue #00AFFF #00AFFF
Magenta #D787D7 #D787D7 Bright Magenta #FF87FF #FF87FF
Cyan #00AFAF #00AFAF Bright Cyan #00D7D7 #00D7D7
Grey #D0D0D0 #D0D0D0 White #FFFFFF #FFFFFF
Purple #875FFF #875FFF Comment #87875F #87875F
Foreground #D0D0D0 #D0D0D0 Background #121212 #121212

Light

Color RGB Color RGB
Black #000000 #000000 Dark Grey #808080 #808080
Red #AF0000 #AF0000 Bright Red #D70000 #D70000
Green #008700 #008700 Bright Green #5FAF5F #5FAF5F
Yellow #AF5F00 #AF5F00 Bright Yellow #D78700 #D78700
Blue #005FAF #005FAF Bright Blue #0087D7 #0087D7
Magenta #870087 #870087 Bright Magenta #AF00AF #AF00AF
Cyan #005F5F #005F5F Bright Cyan #008787 #008787
Grey #D0D0D0 #D0D0D0 White #FFFFFF #FFFFFF
Purple #5F00D7 #5F00D7 Comment #87875F #87875F
Foreground #000000 #000000 Background #FFFFFF #FFFFFF

About

Dark and light Emacs themes

Resources

License

Stars

Watchers

Forks

Packages

No packages published