Create custom theme

This commit is contained in:
Maciej Szlosarczyk 2017-05-26 09:27:46 +03:00
parent fbc43e54cb
commit f9d3a10cb7
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
2 changed files with 46 additions and 13 deletions

View file

@ -13,30 +13,23 @@
(setq display-time-format "%H:%M")
(display-time-mode t)
;; (load-theme 'ujelly t t)
;; (load-theme 'avk-daylight t t)
;; (load-theme 'monokai t t)
;; (load-theme 'flatui t t)
;; (load-theme 'atom-one-dark t t)
(load-theme 'flatui t t)
;; (load-theme 'noctilux t t)
;; (load-theme 'whiteboard t t)
;; (load-theme 'dichromacy t t)
(load-theme 'base16-harmonic-dark t t)
(load "~/.emacs.d/base16-not-harmonic-theme.el")
(load-theme 'base16-not-harmonic t t)
(defun base16-harmonic-custom ()
"Additional configuration for Base 16 theme."
(set-face-attribute 'linum nil :font "Hasklig 14"
:slant 'normal
:background "#0b1c2c")
(set-face-attribute 'mode-line nil :font "Hasklig 13"
:background "#2c3a47")
(set-face-attribute 'fringe nil :background "#2c3a47"))
(set-face-attribute 'mode-line nil :font "Hasklig 13")
(set-face-attribute 'fringe nil :background "#2c3a47"
:slant 'normal))
(require 'helm-themes)
(if (display-graphic-p)
(progn
(enable-theme 'base16-harmonic-dark)
(enable-theme 'base16-not-harmonic)
(base16-harmonic-custom))
(progn
(enable-theme 'flatui)))