diff options
author | David Morgan <djm_uk@protonmail.com> | 2023-06-08 07:01:20 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2023-06-08 07:01:20 +0100 |
commit | cbe72dad05f7105d3318cf860a0f5026a7d77712 (patch) | |
tree | 26dd2d16e968f938ff09eb00c19473f9b612141f | |
parent | 0f41457237fd4dd6931f224ffa397b2637a34367 (diff) | |
download | dotfiles-cbe72dad05f7105d3318cf860a0f5026a7d77712.tar.gz |
Tweak some colours
-rw-r--r-- | .emacs.d/lisp/init-ui.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el index b9eeb51..b52c169 100644 --- a/.emacs.d/lisp/init-ui.el +++ b/.emacs.d/lisp/init-ui.el @@ -176,7 +176,7 @@ :elpaca (highlight-sexp :host github :repo "daimrod/highlight-sexp") :diminish ;; TODO grey8 ? - :custom (hl-sexp-background-color "grey8") + :custom (hl-sexp-background-color "grey10") :hook ((emacs-lisp-mode clojure-mode) . highlight-sexp-mode)) (use-package highlight-indent-guides @@ -185,9 +185,9 @@ :config ;; TODO can we do the same with highlight-indent-guides-auto-* ? (setq highlight-indent-guides-auto-enabled nil) - (set-face-background 'highlight-indent-guides-odd-face "grey20") - (set-face-background 'highlight-indent-guides-even-face "grey20") - (set-face-foreground 'highlight-indent-guides-character-face "grey20") + (set-face-background 'highlight-indent-guides-odd-face "grey25") + (set-face-background 'highlight-indent-guides-even-face "grey25") + (set-face-foreground 'highlight-indent-guides-character-face "grey25") :hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)) (provide 'init-ui) |