mirror of
https://github.com/vale981/doom-modeline
synced 2025-03-05 09:21:38 -05:00
Improve faces.
This commit is contained in:
parent
3fe226542e
commit
5013650df0
1 changed files with 10 additions and 10 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue