|
@@ -269,7 +269,9 @@ column view defines special faces for each outline level. See the file
|
|
|
|
|
|
(defface org-tag
|
|
|
'((t (:bold t)))
|
|
|
- "Face for tags."
|
|
|
+ "Default face for tags.
|
|
|
+Note that the variable `org-tag-faces' can be used to overrule this face for
|
|
|
+specific tags."
|
|
|
:group 'org-faces)
|
|
|
|
|
|
(defface org-todo ; font-lock-warning-face
|
|
@@ -313,6 +315,31 @@ list of attributes, like (:foreground \"blue\" :weight bold :underline t)."
|
|
|
(string :tag "keyword")
|
|
|
(sexp :tag "face"))))
|
|
|
|
|
|
+(defvar org-tags-special-faces-re nil)
|
|
|
+(defun org-set-tag-faces (var value)
|
|
|
+ (set var value)
|
|
|
+ (if (not value)
|
|
|
+ (setq org-tags-special-faces-re nil)
|
|
|
+ (setq org-tags-special-faces-re
|
|
|
+ (concat ":\\(" (mapconcat 'car org-tag-faces "\\|") "\\):"))))
|
|
|
+
|
|
|
+(defcustom org-tag-faces nil
|
|
|
+ "Faces for specific tags.
|
|
|
+This is a list of cons cells, with tags in the car and faces in the cdr.
|
|
|
+The face can be a symbol, or a property list of attributes,
|
|
|
+like (:foreground \"blue\" :weight bold :underline t).
|
|
|
+If you set this variable through customize, it will immediately be effective
|
|
|
+in new buffers and in modified lines.
|
|
|
+If you set it with Lisp, a restart of Emacs is required to activate the
|
|
|
+changes."
|
|
|
+ :group 'org-faces
|
|
|
+ :group 'org-tags
|
|
|
+ :set 'org-set-tag-faces
|
|
|
+ :type '(repeat
|
|
|
+ (cons
|
|
|
+ (string :tag "Tag")
|
|
|
+ (sexp :tag "Face"))))
|
|
|
+
|
|
|
(defface org-table ;; originally copied from font-lock-function-name-face
|
|
|
(org-compatible-face nil
|
|
|
'((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
|