1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # -*- Mode: mutt -*-
- # Default colour definitions
- color attachment black green
- color bold brightyellow white
- color error red white
- color hdrdefault black cyan
- color indicator brightwhite red
- color markers red white
- color message blue white
- color normal blue white
- color quoted red white
- color search brightwhite magenta
- color signature brightblack white
- color status brightyellow blue
- color tilde green white
- color tree red white
- # Colour definitions when on a mono screen
- mono bold bold
- mono indicator reverse
- mono underline underline
- # Colours for items in the reader
- color header brightwhite cyan "^(From|Subject):"
- color header red cyan "^X-Junked-Because: "
- color header red cyan "^X-Virus-hagbard: .* FOUND"
- mono header bold "^(From|Subject|X-Junked-Because|X-Virus-hagbard):"
- # Colours for items in the index
- color index black green ~T
- mono index bold ~T
- color index brightgreen black ~N
- mono index bold ~N
- color index brightwhite black ~D
- mono index bold ~D
- color index red white ~F
- mono index bold ~F
- # Highlights inside the body of a message.
- # URLs
- color body brightblue white "(http|https|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
- color body brightblue white "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
- color body brightblue white "news:[^ \">\t\r\n]*"
- mono body bold "(http|https|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
- mono body bold "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
- mono body bold "news:[^ \">\t\r\n]*"
- # email addresses
- color body brightblue white "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
- mono body bold "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
- # Various smilies and the like
- color body brightblue white "(^|[[:space:]])/[^[:space:]]+/([[:space:]]|$)" # /Italic/ text.
- color body brightblue white "(^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$)" # *Bold* text.
- color body brightblue white "(^|[[:space:]])_[^[:space:]]+_([[:space:]]|$)" # _Underlined_ text.
- color body brightgreen white " [;:]-*[)>(<|]" # :-) etc...
- color body brightgreen white "<[Bb][Gg]>" # <bg>
- color body brightgreen white "<[Gg]>" # <g>
|