diff options
author | Jesús <heckyel@hyperbola.info> | 2019-09-17 17:05:51 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-09-17 17:05:51 -0500 |
commit | 53c9235cbe838777164a889ee5a1c6611372ec9c (patch) | |
tree | cc35c02cbcd8bb065cd16ba3c2f386cc6b2cb1c3 | |
parent | 9f33cc5355f669c446e5a41e973ca506c7e6db26 (diff) | |
download | emacs-personal-53c9235cbe838777164a889ee5a1c6611372ec9c.tar.lz emacs-personal-53c9235cbe838777164a889ee5a1c6611372ec9c.tar.xz emacs-personal-53c9235cbe838777164a889ee5a1c6611372ec9c.zip |
improve colors
-rw-r--r-- | modules/init-theme.el | 4 | ||||
-rw-r--r-- | modules/init-web-mode.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/init-theme.el b/modules/init-theme.el index 11b25b5..bf93ce9 100644 --- a/modules/init-theme.el +++ b/modules/init-theme.el @@ -32,8 +32,8 @@ :config (defun customcolors () "Simple customcolors for theme." - (set-cursor-color "#268BD2") - (set-face-background 'highlight "#268BD2") + (set-cursor-color "#2979FF") + (set-face-background 'highlight "#2979FF") (set-background-color "#1E1E1E") ;; Modeline diff --git a/modules/init-web-mode.el b/modules/init-web-mode.el index 93a0ecd..33333dc 100644 --- a/modules/init-web-mode.el +++ b/modules/init-web-mode.el @@ -17,7 +17,7 @@ :config ;; web-modeの設定 (setq web-mode-enable-current-element-highlight t) - (set-face-background 'web-mode-current-element-highlight-face "#a3a3a3") + (set-face-background 'web-mode-current-element-highlight-face "#616161") ;; Fix smarty (setq web-mode-engines-alist |