blob: 8c80ebf32e1e27fb120d0ba2a5e89140e6ef3dd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# -*- muttrc -*-
#
# Colour settings for mutt.
#
# $Id: colours 6 2007-03-02 17:36:39Z vdanen $
# Default colour definitions
color normal white default
color quoted yellow default
color quoted1 green default
color quoted2 white default
color quoted3 yellow default
color quoted4 green default
color quoted5 white default
color indicator black cyan
color message yellow black
color status yellow blue
color error yellow red
color attachment magenta default
color signature red default
color markers red yellow
color tilde yellow black
color search white red
color tree green default
color bold brightyellow default
color hdrdefault cyan default
color header green default '^From:'
color header red default '^Subject:'
color header yellow default '^(To|CC):.*vdanen'
# Colours for items in the index
color index cyan default ~N
color index green default "~N (~x annvix\.org | ~h \"^In-[Rr]eply-[Tt]o: .*annvix\.org\")"
color index green default "~N (~x linsec\.ca | ~h \"^In-[Rr]eply-[Tt]o: .*linsec\.ca\")"
color index green default "~N (~x mandriva\.com | ~h \"^In-[Rr]eply-[Tt]o: .*mandriva\.com\")"
color index red default ~F
color index green default ~T
color index brightwhite default ~D
mono index bold ~N
mono index bold ~F
mono index bold ~T
mono index bold ~D
# Highlights inside the body of a message.
# URLs
color body brightgreen default "(http|https|ftp|news|telnet|finger)://[^ \">\t\r\n]*"
color body brightgreen default "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
color body brightgreen default "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 brightcyan default "[-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 yellow default "(^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$)" # *Bold* text.
color body yellow default "(^|[[:space:]])_[^[:space:]]+_([[:space:]]|$)" # _Underlined_ text.
color body yellow default "(^|[[:space:]])/[^[:space:]]+/([[:space:]]|$)" # /Italic/ text.
# Colour definitions when on a mono screen
mono bold bold
mono underline underline
mono indicator reverse
mono header bold "^(From|Subject|X-Junked-Because|X-Virus-hagbard):"
|