diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-10-12 19:25:25 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-10-12 19:25:36 -0400 |
commit | 63c17fbcb754853a8a8889bb63605582c1f7fc3e (patch) | |
tree | 1aa0d4cd0a24364e604b868b471389a62c2b7d4e /.mutt/color.rc | |
parent | ignore plaintext aliases (diff) |
switch to dark gruvbox theme
Diffstat (limited to '.mutt/color.rc')
-rw-r--r-- | .mutt/color.rc | 134 |
1 files changed, 93 insertions, 41 deletions
diff --git a/.mutt/color.rc b/.mutt/color.rc index 3568c32..5e9d109 100644 --- a/.mutt/color.rc +++ b/.mutt/color.rc @@ -2,45 +2,6 @@ # We put this first since we want it overridden if required by the colors # below. -color index brightwhite default "~n -100" -color index yellow default "~n -25" -color index magenta default "~n -10" -color index brightblack default "~n -5" - -# Message colors -color attachment brightblack default -color error brightred default -color hdrdefault brightyellow default -color indicator brightyellow red -color markers brightcyan default -color message brightcyan default -color normal default default -color quoted magenta default -color search default green -color signature red default -color status white blue -color tilde magenta default -color tree magenta default -color sidebar_new yellow default - -# Pretty Colors -color status white blue -color index green default ~N # new -color index cyan default ~O # old -color index red default ~D # deleted -color index brightmagenta default ~T # tagged -color index brightyellow default ~F # flagged -color header green default "^Subject:" -color header yellow default "^Date:" -color header yellow default "^To:" -color header yellow default "^Cc:" -color header yellow default "^Bcc:" -color header yellow default "^From:" -color header red default "^X-.*:" -color header brightwhite default '^X-Label:' - -# color index magenta default "~b\This\\ bug\\ has\\ been\\ marked\\ a\\ duplicate\\ of\\ bug" - # Various smilies and the like color body brightwhite default "<[Gg]>" # <g> color body brightwhite default "<[Bb][Gg]>" # <bg> @@ -55,5 +16,96 @@ mono body underline "(^|[[:space:][:punct:]])_[^_]+_([[:space:][:punc color body brightblue default "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)" mono body underline "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)" -# Border lines. -color body blue default "( *[-+=#*~_]){6,}" +# gruvbox dark (contrast dark): + +# bg0 = 234 +# bg1 = 237 +# bg2 = 239 +# bg3 = 241 +# bg4 = 243 +# +# gray = 245 +# +# fg0 = 229 +# fg1 = 223 +# fg2 = 250 +# fg3 = 248 +# fg4 = 246 +# +# red = 167 +# green = 142 +# yellow = 214 +# blue = 109 +# purple = 175 +# aqua = 108 +# orange = 208 + + +# See http://www.mutt.org/doc/manual/#color + +color attachment color109 color234 +color bold color229 color234 +color error color167 color234 +color hdrdefault color246 color234 +color indicator color223 color237 +color markers color243 color234 +color normal color223 color234 +color quoted color250 color234 +color quoted1 color108 color234 +color quoted2 color250 color234 +color quoted3 color108 color234 +color quoted4 color250 color234 +color quoted5 color108 color234 +color search color234 color208 +color signature color108 color234 +color status color234 color250 +color tilde color243 color234 +color tree color142 color234 +color underline color223 color239 + +color sidebar_divider color250 color234 +color sidebar_new color142 color234 + +color index color142 color234 ~N +color index color108 color234 ~O +color index color109 color234 ~P +color index color214 color234 ~F +color index color175 color234 ~Q +color index color167 color234 ~= +color index color234 color223 ~T +color index color234 color167 ~D + +color header color214 color234 "^(To:|From:)" +color header color142 color234 "^Subject:" +color header color108 color234 "^X-Spam-Status:" +color header color108 color234 "^Received:" + +# BSD's regex has RE_DUP_MAX set to 255. +color body color142 color234 "[a-z]{3,255}://[-a-zA-Z0-9@:%._\\+~#=/?&,]+" +color body color142 color234 "[a-zA-Z]([-a-zA-Z0-9_]+\\.){2,255}[-a-zA-Z0-9_]{2,255}" +color body color208 color234 "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+" +color body color208 color234 "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+" +color body color234 color214 "[;:]-*[)>(<lt;|]" +color body color229 color234 "\\*[- A-Za-z]+\\*" + +color body color214 color234 "^-.*PGP.*-*" +color body color142 color234 "^gpg: Good signature from" +color body color167 color234 "^gpg: Can't.*$" +color body color214 color234 "^gpg: WARNING:.*$" +color body color167 color234 "^gpg: BAD signature from" +color body color167 color234 "^gpg: Note: This key has expired!" +color body color214 color234 "^gpg: There is no indication that the signature belongs to the owner." +color body color214 color234 "^gpg: can't handle these multiple signatures" +color body color214 color234 "^gpg: signature verification suppressed" +color body color214 color234 "^gpg: invalid node with packet of type" + +color body color142 color234 "^Good signature from:" +color body color167 color234 "^.?BAD.? signature from:" +color body color142 color234 "^Verification successful" +color body color167 color234 "^Verification [^s][^[:space:]]*$" + +color compose header color223 color234 +color compose security_encrypt color175 color234 +color compose security_sign color109 color234 +color compose security_both color142 color234 +color compose security_none color208 color234 |