diff options
author | Jesús <heckyel@hyperbola.info> | 2019-09-17 12:55:02 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-09-17 12:55:02 -0500 |
commit | 6b644ebb3b47e8adf98a6b780704c0904f9e9636 (patch) | |
tree | e3de60553b4d13fd8d35f17cd38c53e626694f2e | |
parent | f0633f08d43054f0a7b3045e466c7bd61aea7c59 (diff) | |
download | emacs-personal-6b644ebb3b47e8adf98a6b780704c0904f9e9636.tar.lz emacs-personal-6b644ebb3b47e8adf98a6b780704c0904f9e9636.tar.xz emacs-personal-6b644ebb3b47e8adf98a6b780704c0904f9e9636.zip |
Improve theme colors
-rw-r--r-- | modules/init-theme.el | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/modules/init-theme.el b/modules/init-theme.el index 848757e..11b25b5 100644 --- a/modules/init-theme.el +++ b/modules/init-theme.el @@ -32,14 +32,21 @@ :config (defun customcolors () "Simple customcolors for theme." - (set-cursor-color "#268bd2") - (set-face-background 'highlight "#268bd2") + (set-cursor-color "#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 (defface my-linum-hl - '((t :background "gray20" :foreground "gold")) + '((t :background "#131313" :foreground "gold")) "Face for the currently active Line number" - :group 'linum)) + :group 'linum) + ) ;; Invoke customcolors (customcolors) |