-
Notifications
You must be signed in to change notification settings - Fork 26
Home
Ogden Webb edited this page Aug 16, 2018
·
43 revisions
Kaolin is a set of eye pleasing themes for GNU Emacs with support a large number of modes and external packages.
Kaolin themes are based on the pallete that was originally inspired by Sierra theme for vim with adding some extra colors.
- kaolin-dark - a dark jade variant inspired by Sierra.vim
- kaolin-aurora - Kaolin meets polar lights.
- kaolin-bubblegum - Kaolin colorful theme with dark blue background.
- kaolin-light - light variant of the original kaolin-dark.
- kaolin-eclipse - a dark purple variant
- kaolin-ocean - a dark blue variant.
- kaolin-galaxy - bright theme based on one of the Sebastian Andaur arts.
- kaolin-valley-dark - colorful Kaolin theme with brown background.
All the screenshots above use Roboto Mono font.
(require 'kaolin-themes)
;; Choose one by yourself
(load-theme 'kaolin-dark t)
;; Or if you have use-package
(use-package kaolin-themes
:config
(load-theme 'kaolin-dark t))
;; The following set to t by default
(setq kaolin-themes-bold t ; If nil, disable the bold style.
kaolin-themes-italic t ; If nil, disable the italic style.
kaolin-themes-underline t) ; If nil, disable the underline style.
;; If t, use the wave underline style instead of regular underline.
(setq kaolin-themes-underline-wave t)
;; If t, enable italic style in comments.
(setq kaolin-themes-italic-comments t)
;; When t, will display colored hl-line style instead dim gray
(setq kaolin-themes-hl-line-colored t)
;; Enable distinct background for fringe and line numbers.
(setq kaolin-themes-distinct-fringe t)
;; Enable distinct colors for company popup scrollbar.
(setq kaolin-themes-distinct-company-scrollbar t)
You can change some faces via custom-theme-set-faces
(put your theme name instead of kaolin-dark
):
(custom-theme-set-faces
'kaolin-dark
'(whitespace-space ((t (:foreground "gray27"))))
'(whitespace-tab ((t (:foreground "grey27")))))
Additional information about face options you can find in GNU Emacs Lisp Reference Manual on the Face Attributes page.
To find face name and its attributes under mouse cursor, you could use M-x describe-face
.
Also you can call M-x customize-face
- hit RET to customize the face at point