Use summerfruit theme
This commit is contained in:
parent
ad2efc3d30
commit
3399e6649a
4 changed files with 27 additions and 5 deletions
17
themes.el
17
themes.el
|
|
@ -16,24 +16,33 @@
|
|||
(load-theme 'flatui t t)
|
||||
(load "~/.emacs.d/base16-not-harmonic-theme.el")
|
||||
(load-theme 'base16-not-harmonic t t)
|
||||
(load-theme 'base16-mexico-light t t)
|
||||
(load-theme 'base16-unikitty-light t t)
|
||||
(load-theme 'base16-summerfruit-light t t)
|
||||
|
||||
(defun base16-harmonic-custom ()
|
||||
"Additional configuration for Base 16 theme."
|
||||
(set-face-attribute 'linum nil :font "Hasklig 14"
|
||||
(set-face-attribute 'linum nil :font "Hasklig 15"
|
||||
:slant 'normal
|
||||
:background "#2c3a47")
|
||||
|
||||
(set-face-attribute 'font-lock-comment-delimiter-face nil
|
||||
:foreground "#aabcce")
|
||||
(set-face-attribute 'mode-line nil :font "Hasklig 13")
|
||||
(set-face-attribute 'mode-line nil :font "Hasklig 15")
|
||||
(set-face-attribute 'fringe nil :background "#2c3a47"
|
||||
:slant 'normal))
|
||||
|
||||
(defun base16-summerfruit-light-custom ()
|
||||
"Additional configuration for Base16 theme."
|
||||
(set-face-attribute 'mode-line nil :font "Hasklig 15")
|
||||
(set-face-attribute 'linum nil :font "Hasklig 15"
|
||||
:slant 'normal))
|
||||
|
||||
(require 'helm-themes)
|
||||
(if (display-graphic-p)
|
||||
(progn
|
||||
(enable-theme 'base16-not-harmonic)
|
||||
(base16-harmonic-custom))
|
||||
(enable-theme 'base16-summerfruit-light)
|
||||
(base16-summerfruit-light-custom))
|
||||
(progn
|
||||
(color-theme-approximate-on)
|
||||
(enable-theme 'flatui)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue