motform / stimmung-themes

emacs tuned to inner harmonies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hl-line-mode colour turns out to be different from the screenshot

kartikynwa opened this issue · comments

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
(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

Any advice for this? I prefer the README screenshot result. Is modifying hl-line-face the only way? Thanks.