aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--colors/doom-one.vim5
1 files changed, 3 insertions, 2 deletions
diff --git a/colors/doom-one.vim b/colors/doom-one.vim
index c469ffc..d4ea93f 100644
--- a/colors/doom-one.vim
+++ b/colors/doom-one.vim
@@ -233,10 +233,11 @@ let s:text_colors = {
\ 'Debug': s:yellow,
\ 'Error': s:red,
\ 'Special': s:magenta,
+\ 'Muted': s:fg_alt,
\}
for key in keys(s:text_colors)
- call s:_('Text' . key, s:text_colors[key], '', '')
- call s:_('Bold' . key, s:text_colors[key], '', 'bold')
+ call s:_('Text' . key, s:text_colors[key], '', '')
+ call s:_('Text' . key . 'Bold', s:text_colors[key], '', 'bold')
endfor
" }}}