-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabb-colors.el
74 lines (63 loc) · 2.36 KB
/
fabb-colors.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
;;; fabb-colors.el --- Colors for fabb faces -*- lexical-binding: t; -*-
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; Description
;;
;;; Code:
(defface fabb-colors-task-name
'((((class color) (background light)) :foreground "DarkOliveGreen4")
(((class color) (background dark)) :foreground "DarkSeaGreen2"))
"A task name font face."
:group 'fabb)
(defface fabb-colors-task-name-running
'((((class color) (background light)) :foreground "DarkOliveGreen4")
(((class color) (background dark)) :foreground "DarkSeaGreen2"))
"A task name font face."
:group 'fabb)
(defface fabb-colors-task-name-completed
'((((class color) (background light)) :foreground "DarkOliveGreen4")
(((class color) (background dark)) :foreground "DarkSeaGreen2"))
"A task name font face."
:group 'fabb)
(defface fabb-colors-task-name-error
'((((class color) (background light)) :foreground "coral3")
(((class color) (background dark)) :foreground "coral3"))
"A task name font face."
:group 'fabb)
(defface fabb-colors-task-doc
'((((class color) (background light)) :foreground "grey50")
(((class color) (background dark)) :foreground "grey50"))
"A doc font face."
:group 'fabb)
(defface fabb-colors-detail-key
'((((class color) (background light)) :foreground "grey50")
(((class color) (background dark)) :foreground "grey50"))
"A detail key font face."
:group 'fabb)
(defface fabb-colors-buffer-name
'((((class color) (background light)) :foreground "SkyBlue4")
(((class color) (background dark)) :foreground "LightSkyBlue1"))
"A buffer name font face."
:group 'fabb)
(defface fabb-colors-debug-key
'((((class color) (background light)) :foreground "coral3")
(((class color) (background dark)) :foreground "coral3"))
"Font face for keys in debug contexts."
:group 'fabb)
;; (defface fabb-colors-debug-key
;; '((((class color) (background light)) :foreground "#10151C")
;; ;; DistantForeground: #9CAABB
;; ;; Background: #28323B
;; (((class color) (background dark)) :foreground "#10151C"))
;; "A task name font face."
;; :group 'fabb)
(defface fabb-colors-debug-value
'((((class color) (background light)) :foreground "salmon1")
(((class color) (background dark)) :foreground "salmon1"))
"Font face for values in debug contexts."
:group 'fabb)
(provide 'fabb-colors)
;;; fabb-colors.el ends here