protesilaos / modus-themes

Highly accessible themes for GNU Emacs, conforming with the highest standard for colour contrast between background and foreground values (WCAG AAA).
https://protesilaos.com/emacs/modus-themes
GNU General Public License v3.0
553 stars 30 forks source link

white line over modeline #37

Closed laampui closed 2 years ago

laampui commented 2 years ago

Thank you for your effort for this great package. Recently I found an issue while using with keycast. There is one pixel line through the background. Screenshot_20220723_082952

I 've reproduce this in emacs -Q with the following code snippet

(use-package modus-themes
  ;; (info "(modus-themes) Top")
  :init
  (setq modus-themes-mode-line '(moody accented borderless))
  (modus-themes-load-themes)
  :config
  ;; Load the theme of your choice:
  (modus-themes-load-operandi)
  :bind ("<f5>" . modus-themes-toggle))

(use-package keycast
  :init
  (with-eval-after-load 'keycast
    (define-minor-mode keycast-mode
      "Show current command and its key binding in the mode line."
      :global t
      (if keycast-mode
          (add-hook 'pre-command-hook 'keycast--update t)
        (remove-hook 'pre-command-hook 'keycast--update)))

    (add-to-list 'global-mode-string '("" keycast-mode-line " ")))
  (keycast-mode))
laampui commented 2 years ago

After reading the docs, I should remove the moody to get what i want.

protesilaos commented 2 years ago

Hello @laampui! Glad you found it. If there is still a problem, please let me know.