bbatsov / zenburn-emacs

The Zenburn colour theme ported to Emacs
GNU General Public License v3.0
977 stars 269 forks source link

Centaur tabs icons has weird border #344

Closed gabriel376 closed 3 years ago

gabriel376 commented 4 years ago

Centaur tabs icons has weird border

How to reproduce:

(setq package-archives '(("melpa" . "http://melpa.org/packages/")))
(package-initialize)

(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))

(use-package centaur-tabs
  :ensure t
  :demand
  :config
  (setq centaur-tabs-set-icons t)
  (centaur-tabs-mode t))

(use-package all-the-icons
  :ensure t
  :config
  (all-the-icons-install-fonts t))

(setq custom-safe-themes t)
(use-package zenburn-theme
  :ensure t
  :config
  (load-theme 'zenburn))

image

If I change the theme, the icons looks fine

(setq package-archives '(("melpa" . "http://melpa.org/packages/")))
(package-initialize)

(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))

(use-package centaur-tabs
  :ensure t
  :demand
  :config
  (setq centaur-tabs-set-icons t)
  (centaur-tabs-mode t))

(use-package all-the-icons
  :ensure t
  :config
  (all-the-icons-install-fonts t))

(setq custom-safe-themes t)
(use-package nord-theme
  :ensure t
  :config
  (load-theme 'nord))

image