Create custom theme
This commit is contained in:
parent
fbc43e54cb
commit
f9d3a10cb7
2 changed files with 46 additions and 13 deletions
19
themes.el
19
themes.el
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue