Improve faces.

This commit is contained in:
Vincent Zhang 2019-12-02 02:28:25 +08:00
parent 3fe226542e
commit 5013650df0

View file

@ -494,52 +494,52 @@ It requires `circe' or `erc' package."
:group 'doom-modeline-faces)
(defface doom-modeline-lsp-success
'((t (:inherit success)))
'((t (:inherit success :weight normal)))
"Face for LSP success state."
:group 'doom-modeline-faces)
(defface doom-modeline-lsp-warning
'((t (:inherit warning)))
'((t (:inherit warning :weight normal)))
"Face for LSP warning state."
:group 'doom-modeline-faces)
(defface doom-modeline-lsp-error
'((t (:inherit error)))
'((t (:inherit error :weight normal)))
"Face for LSP error state."
:group 'doom-modeline-faces)
(defface doom-modeline-lsp-running
'((t (:inherit compilation-mode-line-run)))
'((t (:inherit compilation-mode-line-run :weight normal)))
"Face for LSP running state."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-charging
'((t (:inherit success)))
'((t (:inherit success :weight normal)))
"Face for battery charging statues."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-full
'((t (:inherit success)))
'((t (:inherit success :weight normal)))
"Face for battery full statues."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-normal
'((t (:inherit mode-line)))
'((t (:inherit mode-line :weight normal)))
"Face for battery normal statues."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-warning
'((t (:inherit warning)))
'((t (:inherit warning :weight normal)))
"Face for battery warning statues."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-critical
'((t (:inherit error)))
'((t (:inherit error :weight normal)))
"Face for battery critical statues."
:group 'doom-modeline-faces)
(defface doom-modeline-battery-error
'((t (:inherit error)))
'((t (:inherit error :weight normal)))
"Face for battery error statues."
:group 'doom-modeline-faces)