Hi. First of all thanks for making this theme. I have been looking for a good low noise theme for a while and this theme is perfect. I have been happily using it for a few months now.
In my setup, the colour of highlighted line comes out different from what is shown in the screenshots. The problem this creates for me is that it makes it difficult to see evil-mode highlighting in visual mode.
Hi. First of all thanks for making this theme. I have been looking for a good low noise theme for a while and this theme is perfect. I have been happily using it for a few months now.
In my setup, the colour of highlighted line comes out different from what is shown in the screenshots. The problem this creates for me is that it makes it difficult to see evil-mode highlighting in visual mode.
Here is how I set up stimmung:
init.el snippet
```elisp (use-package stimmung-themes :ensure t :custom (stimmung-themes-constant 'none) (stimmung-themes-type 'none :italic? t) (stimmung-themes-comment 'foreground) (column-number-mode t) (mode-line-percent-position nil) :config (setq-default mode-line-format (delq 'mode-line-modes mode-line-format)) (advice-add 'vc-git-mode-line-string :override (lambda (file) "")) (set-face-attribute 'mode-line-inactive nil :box '(:line-width 2 :color "gray95")) (set-face-attribute 'mode-line nil :box '(:line-width 2 :color "gray80"))) (use-package theme-changer :ensure t :custom (theme-changer-delay-seconds -3600) (calendar-latitude xx.xx) (calendar-longitude xx.xx) :config (change-theme 'stimmung-themes-light 'stimmung-themes-dark)) ```Here is a comparison screenshot. Left is what my setup looks like while the right is a clipping from the README screenshots:
Screenshot comparison
![stim](https://github.com/motform/stimmung-themes/assets/7846060/24f1d197-4372-4100-84e5-a94c4807a8b0)Any advice for this? I prefer the README screenshot result. Is modifying
hl-line-face
the only way? Thanks.