Customize the theme to be darker

This commit is contained in:
Maciej Szlosarczyk 2017-05-25 17:04:19 +03:00
parent 5def2d993b
commit 7c92796a8c
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
2 changed files with 11 additions and 5 deletions

2
emacs
View file

@ -25,7 +25,7 @@
'(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b"))) '(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b")))
'(package-selected-packages '(package-selected-packages
(quote (quote
(multi-term groovy-mode flycheck-rust racer column-enforce-mode column-marker web-mode helm-themes less-css-mode jade-mode zenburn-theme monokai-theme smart-mode-line-powerline-theme smart-mode-line mode-icons airline-themes atom-one-dark-theme neotree ant rainbow-delimiters rust-mode scala-mode haskell-mode yasnippet yaml-mode ujelly-theme rvm ruby-end rinari noctilux-theme markdown-mode jira indent-guide helm-projectile helm-ag haml-mode flycheck flatui-theme exec-path-from-shell evil-terminal-cursor-changer evil-nerd-commenter evil-magit evil-leader dumb-jump dockerfile-mode diff-hl base16-theme avk-emacs-themes alchemist aggressive-indent ag))) (rainbow-mode json-reformat multi-term groovy-mode flycheck-rust racer column-enforce-mode column-marker web-mode helm-themes less-css-mode jade-mode zenburn-theme monokai-theme smart-mode-line-powerline-theme smart-mode-line mode-icons airline-themes atom-one-dark-theme neotree ant rainbow-delimiters rust-mode scala-mode haskell-mode yasnippet yaml-mode ujelly-theme rvm ruby-end rinari noctilux-theme markdown-mode jira indent-guide helm-projectile helm-ag haml-mode flycheck flatui-theme exec-path-from-shell evil-terminal-cursor-changer evil-nerd-commenter evil-magit evil-leader dumb-jump dockerfile-mode diff-hl base16-theme avk-emacs-themes alchemist aggressive-indent ag)))
'(safe-local-variable-values (quote ((encoding . utf-8)))) '(safe-local-variable-values (quote ((encoding . utf-8))))
'(sml/active-background-color "#34495e") '(sml/active-background-color "#34495e")
'(sml/active-foreground-color "#ecf0f1") '(sml/active-foreground-color "#ecf0f1")

View file

@ -32,13 +32,20 @@
;; (load-theme 'dichromacy t t) ;; (load-theme 'dichromacy t t)
(load-theme 'base16-harmonic-dark t t) (load-theme 'base16-harmonic-dark 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"))
(require 'helm-themes) (require 'helm-themes)
(if (display-graphic-p) (if (display-graphic-p)
(progn (progn
(enable-theme 'base16-harmonic-dark) (enable-theme 'base16-harmonic-dark)
(set-face-attribute 'linum nil :font "Hasklig 14" (base16-harmonic-custom))
:slant 'normal
:background "#0b1c2c"))
(progn (progn
(enable-theme 'flatui))) (enable-theme 'flatui)))
@ -46,7 +53,6 @@
;; Set font face ;; Set font face
(set-face-attribute 'default nil :font "Hasklig 13") (set-face-attribute 'default nil :font "Hasklig 13")
(set-face-attribute 'mode-line nil :font "Hasklig 13")
(set-face-attribute 'helm-selection nil :font "Hasklig 13") (set-face-attribute 'helm-selection nil :font "Hasklig 13")
(set-face-attribute 'helm-header nil :font "Hasklig 15") (set-face-attribute 'helm-header nil :font "Hasklig 15")