diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-07-03 01:00:30 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2023-07-03 01:09:20 +0530 |
commit | d4614340a144ae9f2d685e9ab17da0ec8ea2d293 (patch) | |
tree | 0e21950d7a979ff361e0374a9499de02fc224daf /.config/neomutt/color | |
parent | 5745399290e1d253ec613d67d0e4a4e9406c8bb9 (diff) |
neomutt: more modular rc and adding colors
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to '.config/neomutt/color')
-rw-r--r-- | .config/neomutt/color | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.config/neomutt/color b/.config/neomutt/color new file mode 100644 index 0000000..9c9181b --- /dev/null +++ b/.config/neomutt/color @@ -0,0 +1,43 @@ +#---------- Colors ---------- +set my_background = "color234" +set my_gray = "color245" +set my_magenta = "color198" +set my_brightmagenta = "brightcolor198" +set my_green = "color112" +set my_brightgreen = "brightcolor112" +set my_red = "color160" +set my_darkgray = "color235" +set my_tan = "color185" +set my_blue = "color81" +set my_lavender = "color141" + +# index menu +color index $my_gray $my_background ".*" +color index_date $my_magenta $my_background +color index_subject white $my_background "~R" +color index_subject brightwhite $my_background "~U" +color index_author $my_green $my_background "~R" +color index_author $my_brightgreen $my_background "~U" + +# message display +color normal white $my_background +color error $my_red $my_background +color tilde $my_darkgray $my_background +color message white $my_background +color markers $my_red white +color attachment white $my_background +color bold brightwhite $my_background +color underline brightcolor81 $my_background +color quoted $my_tan $my_background +color quoted1 $my_blue $my_background +color quoted2 $my_green $my_background +color quoted3 $my_lavender $my_background +color hdrdefault $my_gray $my_background +color header brightwhite $my_background "^(Subject)" + +color search $my_lavender $my_background +color status $my_gray $my_darkgray +# header/footer menu +color indicator $my_background $my_tan +# thread tree arrows +color tree $my_tan $my_background |