The icons in the breadcrumbs of lsp-mode cannot be displayed properly
- Dominant language
- Emacs Lisp
- Stars
- 353
- Forks
- 87
- PR merge metrics
- No merged PRs in 30d
Description
The icons in the breadcrumbs of lsp-mode cannot be displayed properly, as shown in the following figure:

*Expected*

*Current*
It can be fixed by modifying the code in `dracula-theme.el` as follows:
```emacs-lisp
;; Before
(header-line :inherit 'mode-line)
;; After
(header-line :background ,dracula-current
;; :box ,dracula-current :inverse-video nil
,@(if dracula-alternate-mode-line-and-minibuffer
(list :foreground fg3)
(list :foreground dracula-fg)))
```
The version of dracula-theme I am using is `20220821.1717`.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.