diff options
-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) |