forked from echosa/emacs-mailapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailapp-custom.el
59 lines (47 loc) · 1.77 KB
/
mailapp-custom.el
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
(defgroup mailapp nil
"Mail.app mode customization group."
:group 'external)
(defgroup mailapp-faces nil
"Faces and colors for Mail.app mode."
:group 'mailapp)
(defcustom mailapp-base-dir "~/.emacs.d"
"Directory where maillapp is installed."
:group 'mailapp
:type 'directory)
(defcustom mailapp-default-sort ""
"Default sort string."
:group 'mailapp
:type 'string)
(defface mailapp-message-odd-row-face
'((t (:foreground "white" :background "black")))
"Colors for odd count mail messages."
:group 'mailapp-faces)
(defface mailapp-message-even-row-face
'((t (:foreground "white" :background "grey25")))
"Colors for even count mail messages."
:group 'mailapp-faces)
(defface mailapp-unread-message-odd-row-face
'((t (:foreground "white" :background "black" :bold t)))
"Colors for odd count unread mail messages."
:group 'mailapp-faces)
(defface mailapp-unread-message-even-row-face
'((t (:foreground "white" :background "grey25" :bold t)))
"Colors for even count unread mail messages."
:group 'mailapp-faces)
(defface mailapp-junk-message-odd-row-face
'((t (:foreground "orange" :background "black")))
"Colors for odd count read junk mail messages."
:group 'mailapp-faces)
(defface mailapp-junk-message-even-row-face
'((t (:foreground "orange" :background "grey25")))
"Colors for even count read junk mail messages."
:group 'mailapp-faces)
(defface mailapp-unread-junk-message-odd-row-face
'((t (:foreground "orange" :background "black" :bold t)))
"Colors for odd count unread junk mail messages."
:group 'mailapp-faces)
(defface mailapp-unread-junk-message-even-row-face
'((t (:foreground "orange" :background "grey25" :bold t)))
"Colors for even count unread junk mail messages."
:group 'mailapp-faces)
(provide 'mailapp-custom)