Skip to content
Ogden Webb edited this page Feb 8, 2018 · 43 revisions

kaolin-logo

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.

This package includes the following themes

All the screenshots above use Roboto Mono font.

Configuration example

(require 'kaolin-themes)                                           
;; Choose one by yourself                                                
(load-theme 'kaolin-dark)                                          

Custom theme settings

;; The following set to t by default                               
(setq kaolin-bold t       ; If nil, disable the bold style.        
      kaolin-italic t     ; If nil, disable the italic style.      
      kaolin-underline t) ; If nil, disable the underline style.   

Some extra theme features (disabled by default)

;; If t, use the wave underline style instead of regular underline.
(setq kaolin-wave t)
  
;; When t, will display colored hl-line style instead dim gray     
(setq kaolin-hl-line-colored t)                                    

Face customization

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

The end of the path is the beginning.
Clone this wiki locally