about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-06-08 07:01:20 +0100
committerDavid Morgan <djm_uk@protonmail.com>2023-06-08 07:01:20 +0100
commitcbe72dad05f7105d3318cf860a0f5026a7d77712 (patch)
tree26dd2d16e968f938ff09eb00c19473f9b612141f
parent0f41457237fd4dd6931f224ffa397b2637a34367 (diff)
downloaddotfiles-cbe72dad05f7105d3318cf860a0f5026a7d77712.tar.gz
Tweak some colours
-rw-r--r--.emacs.d/lisp/init-ui.el8
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)