From 06d234c074a5072db8e4a2be6881f31e233b71cf Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Fri, 19 May 2023 19:01:54 +0200 Subject: [PATCH] customize highlight bg color for better contrast --- lisp/init-display.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/init-display.el b/lisp/init-display.el index 3a74e3a..899f544 100644 --- a/lisp/init-display.el +++ b/lisp/init-display.el @@ -13,6 +13,11 @@ :config (load-theme 'solarized-dark-high-contrast t)) +;; matches solarized theme colors +(use-package hl-line + :custom-face + (hl-line ((t (:background "#006400"))))) + ;;; ** increase default font size on startup (set-face-attribute 'default nil :height 133)