Improve theme colors

This commit is contained in:
Jesús 2019-09-17 12:55:02 -05:00
parent f0633f08d4
commit 6b644ebb3b
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -32,14 +32,21 @@
:config :config
(defun customcolors () (defun customcolors ()
"Simple customcolors for theme." "Simple customcolors for theme."
(set-cursor-color "#268bd2") (set-cursor-color "#268BD2")
(set-face-background 'highlight "#268bd2") (set-face-background 'highlight "#268BD2")
(set-background-color "#1E1E1E")
;; Modeline
(set-face-background 'mode-line "#131313")
(set-face-background 'modeline-inactive "#333333")
;; (set-face-foreground 'mode-line "#FFFFFF")
;; Fix linum current-line highlight ;; Fix linum current-line highlight
(defface my-linum-hl (defface my-linum-hl
'((t :background "gray20" :foreground "gold")) '((t :background "#131313" :foreground "gold"))
"Face for the currently active Line number" "Face for the currently active Line number"
:group 'linum)) :group 'linum)
)
;; Invoke customcolors ;; Invoke customcolors
(customcolors) (customcolors)