aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-09-17 23:09:24 -0500
committerJesús <heckyel@hyperbola.info>2019-09-17 23:09:24 -0500
commit2393b459e66d2c135c7825efc24d3f88757e086c (patch)
tree509598fc695fdd1828da3842aca58e69c0f86dd5
parent53c9235cbe838777164a889ee5a1c6611372ec9c (diff)
downloademacs-personal-2393b459e66d2c135c7825efc24d3f88757e086c.tar.lz
emacs-personal-2393b459e66d2c135c7825efc24d3f88757e086c.tar.xz
emacs-personal-2393b459e66d2c135c7825efc24d3f88757e086c.zip
Added dark theme
-rw-r--r--modules/init-theme.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/init-theme.el b/modules/init-theme.el
index bf93ce9..83976e5 100644
--- a/modules/init-theme.el
+++ b/modules/init-theme.el
@@ -34,16 +34,19 @@
"Simple customcolors for theme."
(set-cursor-color "#2979FF")
(set-face-background 'highlight "#2979FF")
- (set-background-color "#1E1E1E")
+ ;; (set-background-color "#1C1E1F") ;; semi-dark
+ (set-background-color "#101418") ;; dark
;; Modeline
- (set-face-background 'mode-line "#131313")
+ ;; (set-face-background 'mode-line "#131313") ;; semi-dark
+ (set-face-background 'mode-line "#0C0E10") ;; dark
(set-face-background 'modeline-inactive "#333333")
;; (set-face-foreground 'mode-line "#FFFFFF")
;; Fix linum current-line highlight
(defface my-linum-hl
- '((t :background "#131313" :foreground "gold"))
+ ;; '((t :background "#131313" :foreground "gold")) ;; semi-dark
+ '((t :background "#0C0E10" :foreground "gold")) ;; dark
"Face for the currently active Line number"
:group 'linum)
)