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:
;; 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.
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.elas follows:The version of dracula-theme I am using is
20220821.1717.