Answers:
您可以自定义org-priority-faces
为每个优先级提供特定的属性。
来自C-h v org-priority-faces
,
文档:
特定优先事项的面孔。
这是一个cons单元列表,在汽车中具有优先权,在cdr中具有优先权。面部可以是符号,字符串颜色或属性的属性列表,例如
(:foreground "blue" :weight bold :underline t)
。
如果是颜色字符串,则变量将org-faces-easy-properties
确定它是前景色还是背景色。
编辑:
例如,这是我当前的设置:
'((65 :foreground "red" :background "yellow")
(66 :foreground "black" :background "yellow")
(67 . "blue"))
数字65
等对应于优先级字母(ASCII 65代表A
等)。
使用customize-variable
界面最容易配置。
这里是一个定制的例子
(setq org-priority-faces '((?A . (:foreground "red" :weight 'bold))
(?B . (:foreground "yellow"))
(?C . (:foreground "green"))))
bold
不应该被引用。