|
@@ -45,6 +45,20 @@ The foreground color of this face should be equal to the background
|
|
|
color of the frame."
|
|
|
:group 'org-faces)
|
|
|
|
|
|
+(defface org-dispatcher-highlight
|
|
|
+ '((default :weight bold)
|
|
|
+ (((class color) (min-colors 88) (background dark))
|
|
|
+ :background "gray20" :foreground "gold1")
|
|
|
+ (((class color) (min-colors 88) (background light))
|
|
|
+ :background "SlateGray1" :foreground "DarkBlue")
|
|
|
+ (((class color) (min-colors 16) (background dark))
|
|
|
+ :foreground "yellow")
|
|
|
+ (((class color) (min-colors 16) (background light))
|
|
|
+ :foreground "blue")
|
|
|
+ (t :inverse-video t))
|
|
|
+ "Face for highlighted keys in the dispatcher."
|
|
|
+ :group 'org-faces)
|
|
|
+
|
|
|
(defface org-level-1 '((t :inherit outline-1))
|
|
|
"Face used for level 1 headlines."
|
|
|
:group 'org-faces)
|