]> git.madduck.net Git - etc/neomutt.git/blob - .config/neomutt/colours

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix colours for catppuccin terminal theme
[etc/neomutt.git] / .config / neomutt / colours
1 color status    color7 color18
2 color indicator default color237
3
4 color normal    color255 default
5
6 color index     brightcolor15 default   "!(~D|~N|~O) ~T"
7 color index     color249 default        "~Q"
8
9 color index     color226 default        "(~N|~O)"
10 color index     brightcolor226 default  "(~N|~O) ~T"
11 color sidebar_new       color226 default
12
13 color index     color243 default        "~D"
14 color index     brightcolor243 default  "~D ~T"
15
16 color index     default color19 "~h X-Was-Postponed:"
17
18 color index     default color88 "~F"
19 color sidebar_flagged   color88 default
20
21 color hdrdefault        color153 default
22 color header    color156 default        "^From:"
23 color header    color156 default        "^Subject:"
24
25 color attachment        color204 default
26 color search    default color172
27
28 color body      color180 default        [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+
29 color body      color117 default        (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+
30 color body      color230 default        (^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$) # *bold* text Blue
31 color body      color230 default        (^|[[:space:]])_[^[:space:]]+_([[:space:]]|$)   # _underlined_ text Blue
32 color body      color230 default        (^|[[:space:]])/[^[:space:]]+/([[:space:]]|$)   # /italic/ text Blue
33
34
35
36
37 color signature color8 default  # Signatures are Surface 2
38
39 color error     color1 default  # error messages are Red
40 color tree      color15 default # thread tree arrows Subtext 0
41 color tilde     color15 default # blank line padding Subtext 0
42
43 color quoted    color15 default # Subtext 0
44 color quoted1   color7 default  # Subtext 1
45 color quoted2   color8 default  # Surface 2
46 color quoted3   color0 default  # Surface 1
47 color quoted4   color0 default
48 color quoted5   color0 default
49
50 # get a list of colours with zsh:
51 #
52 # for i in {0..255} ; do
53 #  printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i"
54 #  if (( i == 15 )) || (( i > 15 )) && (( (i-15) % 6 == 0 )); then
55 #  printf "\n";
56 #  fi
57 # done
58
59 # vim:ts=24:ft=muttrc