diff --git a/init.el b/init.el index 7a046ca..30f2c53 100644 --- a/init.el +++ b/init.el @@ -140,19 +140,9 @@ ;; Style the mode line and turn off the toolbar when in graphical mode. (if (display-graphic-p) (progn - (set-face-attribute 'mode-line nil - :foreground "black" - :background "gray76" - :box '(:line-width -1 :color "azure4")) (tool-bar-mode 0) )) -;; Load the "manoj-dark" default theme when in term mode. -(if (not (display-graphic-p) ) - (progn - (load-theme 'manoj-dark) - )) - ;;==================== ;; Package Manager ;;==================== @@ -198,6 +188,16 @@ ;; ;;======================================== +;;==================== +;; Themes +;;==================== + +;; Load "Tomorrow Night" +(use-package color-theme-sanityinc-tomorrow + :ensure t + :config + (load-theme `sanityinc-tomorrow-night t)) + ;;==================== ;; Language Modes ;;====================