Dark and light Emacs themes based on vim-wildcharm.
Should look mostly the same in GUI and TUI (terminal with 256 color support).
Available on MELPA:
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") 'append)
M-x package-install RET wildcharm-theme RET
orM-x package-install RET wildcharm-light-theme RET
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)))))