org-faces.el 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. ;;; org-faces.el --- Face definitions for Org-mode.
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 6.00pre-4
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 3, or (at your option)
  13. ;; any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;;
  24. ;;; Commentary:
  25. ;; This file contains the face definitons for Org.
  26. ;;; Code:
  27. (require 'org-macs)
  28. (require 'org-compat)
  29. (defgroup org-faces nil
  30. "Faces in Org-mode."
  31. :tag "Org Faces"
  32. :group 'org-font-lock)
  33. (defface org-hide
  34. '((((background light)) (:foreground "white"))
  35. (((background dark)) (:foreground "black")))
  36. "Face used to hide leading stars in headlines.
  37. The forground color of this face should be equal to the background
  38. color of the frame."
  39. :group 'org-faces)
  40. (defface org-level-1 ;; originally copied from font-lock-function-name-face
  41. (org-compatible-face 'outline-1
  42. '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
  43. (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
  44. (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
  45. (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
  46. (((class color) (min-colors 8)) (:foreground "blue" :bold t))
  47. (t (:bold t))))
  48. "Face used for level 1 headlines."
  49. :group 'org-faces)
  50. (defface org-level-2 ;; originally copied from font-lock-variable-name-face
  51. (org-compatible-face 'outline-2
  52. '((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
  53. (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
  54. (((class color) (min-colors 8) (background light)) (:foreground "yellow"))
  55. (((class color) (min-colors 8) (background dark)) (:foreground "yellow" :bold t))
  56. (t (:bold t))))
  57. "Face used for level 2 headlines."
  58. :group 'org-faces)
  59. (defface org-level-3 ;; originally copied from font-lock-keyword-face
  60. (org-compatible-face 'outline-3
  61. '((((class color) (min-colors 88) (background light)) (:foreground "Purple"))
  62. (((class color) (min-colors 88) (background dark)) (:foreground "Cyan1"))
  63. (((class color) (min-colors 16) (background light)) (:foreground "Purple"))
  64. (((class color) (min-colors 16) (background dark)) (:foreground "Cyan"))
  65. (((class color) (min-colors 8) (background light)) (:foreground "purple" :bold t))
  66. (((class color) (min-colors 8) (background dark)) (:foreground "cyan" :bold t))
  67. (t (:bold t))))
  68. "Face used for level 3 headlines."
  69. :group 'org-faces)
  70. (defface org-level-4 ;; originally copied from font-lock-comment-face
  71. (org-compatible-face 'outline-4
  72. '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
  73. (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
  74. (((class color) (min-colors 16) (background light)) (:foreground "red"))
  75. (((class color) (min-colors 16) (background dark)) (:foreground "red1"))
  76. (((class color) (min-colors 8) (background light)) (:foreground "red" :bold t))
  77. (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t))
  78. (t (:bold t))))
  79. "Face used for level 4 headlines."
  80. :group 'org-faces)
  81. (defface org-level-5 ;; originally copied from font-lock-type-face
  82. (org-compatible-face 'outline-5
  83. '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen"))
  84. (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen"))
  85. (((class color) (min-colors 8)) (:foreground "green"))))
  86. "Face used for level 5 headlines."
  87. :group 'org-faces)
  88. (defface org-level-6 ;; originally copied from font-lock-constant-face
  89. (org-compatible-face 'outline-6
  90. '((((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
  91. (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
  92. (((class color) (min-colors 8)) (:foreground "magenta"))))
  93. "Face used for level 6 headlines."
  94. :group 'org-faces)
  95. (defface org-level-7 ;; originally copied from font-lock-builtin-face
  96. (org-compatible-face 'outline-7
  97. '((((class color) (min-colors 16) (background light)) (:foreground "Orchid"))
  98. (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue"))
  99. (((class color) (min-colors 8)) (:foreground "blue"))))
  100. "Face used for level 7 headlines."
  101. :group 'org-faces)
  102. (defface org-level-8 ;; originally copied from font-lock-string-face
  103. (org-compatible-face 'outline-8
  104. '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
  105. (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
  106. (((class color) (min-colors 8)) (:foreground "green"))))
  107. "Face used for level 8 headlines."
  108. :group 'org-faces)
  109. (defface org-special-keyword ;; originally copied from font-lock-string-face
  110. (org-compatible-face nil
  111. '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
  112. (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
  113. (t (:italic t))))
  114. "Face used for special keywords."
  115. :group 'org-faces)
  116. (defface org-drawer ;; originally copied from font-lock-function-name-face
  117. (org-compatible-face nil
  118. '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
  119. (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
  120. (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
  121. (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
  122. (((class color) (min-colors 8)) (:foreground "blue" :bold t))
  123. (t (:bold t))))
  124. "Face used for drawers."
  125. :group 'org-faces)
  126. (defface org-property-value nil
  127. "Face used for the value of a property."
  128. :group 'org-faces)
  129. (defface org-column
  130. (org-compatible-face nil
  131. '((((class color) (min-colors 16) (background light))
  132. (:background "grey90"))
  133. (((class color) (min-colors 16) (background dark))
  134. (:background "grey30"))
  135. (((class color) (min-colors 8))
  136. (:background "cyan" :foreground "black"))
  137. (t (:inverse-video t))))
  138. "Face for column display of entry properties."
  139. :group 'org-faces)
  140. (when (fboundp 'set-face-attribute)
  141. ;; Make sure that a fixed-width face is used when we have a column table.
  142. (set-face-attribute 'org-column nil
  143. :height (face-attribute 'default :height)
  144. :family (face-attribute 'default :family)))
  145. (defface org-warning
  146. (org-compatible-face 'font-lock-warning-face
  147. '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t))
  148. (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :bold t))
  149. (((class color) (min-colors 8) (background light)) (:foreground "red" :bold t))
  150. (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t))
  151. (t (:bold t))))
  152. "Face for deadlines and TODO keywords."
  153. :group 'org-faces)
  154. (defface org-archived ; similar to shadow
  155. (org-compatible-face 'shadow
  156. '((((class color grayscale) (min-colors 88) (background light))
  157. (:foreground "grey50"))
  158. (((class color grayscale) (min-colors 88) (background dark))
  159. (:foreground "grey70"))
  160. (((class color) (min-colors 8) (background light))
  161. (:foreground "green"))
  162. (((class color) (min-colors 8) (background dark))
  163. (:foreground "yellow"))))
  164. "Face for headline with the ARCHIVE tag."
  165. :group 'org-faces)
  166. (defface org-link
  167. '((((class color) (background light)) (:foreground "Purple" :underline t))
  168. (((class color) (background dark)) (:foreground "Cyan" :underline t))
  169. (t (:underline t)))
  170. "Face for links."
  171. :group 'org-faces)
  172. (defface org-ellipsis
  173. '((((class color) (background light)) (:foreground "DarkGoldenrod" :underline t))
  174. (((class color) (background dark)) (:foreground "LightGoldenrod" :underline t))
  175. (t (:strike-through t)))
  176. "Face for the ellipsis in folded text."
  177. :group 'org-faces)
  178. (defface org-target
  179. '((((class color) (background light)) (:underline t))
  180. (((class color) (background dark)) (:underline t))
  181. (t (:underline t)))
  182. "Face for links."
  183. :group 'org-faces)
  184. (defface org-date
  185. '((((class color) (background light)) (:foreground "Purple" :underline t))
  186. (((class color) (background dark)) (:foreground "Cyan" :underline t))
  187. (t (:underline t)))
  188. "Face for links."
  189. :group 'org-faces)
  190. (defface org-sexp-date
  191. '((((class color) (background light)) (:foreground "Purple"))
  192. (((class color) (background dark)) (:foreground "Cyan"))
  193. (t (:underline t)))
  194. "Face for links."
  195. :group 'org-faces)
  196. (defface org-tag
  197. '((t (:bold t)))
  198. "Face for tags."
  199. :group 'org-faces)
  200. (defface org-todo ; font-lock-warning-face
  201. (org-compatible-face nil
  202. '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t))
  203. (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :bold t))
  204. (((class color) (min-colors 8) (background light)) (:foreground "red" :bold t))
  205. (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t))
  206. (t (:inverse-video t :bold t))))
  207. "Face for TODO keywords."
  208. :group 'org-faces)
  209. (defface org-done ;; originally copied from font-lock-type-face
  210. (org-compatible-face nil
  211. '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen" :bold t))
  212. (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen" :bold t))
  213. (((class color) (min-colors 8)) (:foreground "green"))
  214. (t (:bold t))))
  215. "Face used for todo keywords that indicate DONE items."
  216. :group 'org-faces)
  217. (defface org-headline-done ;; originally copied from font-lock-string-face
  218. (org-compatible-face nil
  219. '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
  220. (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
  221. (((class color) (min-colors 8) (background light)) (:bold nil))))
  222. "Face used to indicate that a headline is DONE.
  223. This face is only used if `org-fontify-done-headline' is set. If applies
  224. to the part of the headline after the DONE keyword."
  225. :group 'org-faces)
  226. (defcustom org-todo-keyword-faces nil
  227. "Faces for specific TODO keywords.
  228. This is a list of cons cells, with TODO keywords in the car
  229. and faces in the cdr. The face can be a symbol, or a property
  230. list of attributes, like (:foreground \"blue\" :weight bold :underline t)."
  231. :group 'org-faces
  232. :group 'org-todo
  233. :type '(repeat
  234. (cons
  235. (string :tag "keyword")
  236. (sexp :tag "face"))))
  237. (defface org-table ;; originally copied from font-lock-function-name-face
  238. (org-compatible-face nil
  239. '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
  240. (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
  241. (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
  242. (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
  243. (((class color) (min-colors 8) (background light)) (:foreground "blue"))
  244. (((class color) (min-colors 8) (background dark)))))
  245. "Face used for tables."
  246. :group 'org-faces)
  247. (defface org-formula
  248. (org-compatible-face nil
  249. '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
  250. (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
  251. (((class color) (min-colors 8) (background light)) (:foreground "red"))
  252. (((class color) (min-colors 8) (background dark)) (:foreground "red"))
  253. (t (:bold t :italic t))))
  254. "Face for formulas."
  255. :group 'org-faces)
  256. (defface org-code
  257. (org-compatible-face nil
  258. '((((class color grayscale) (min-colors 88) (background light))
  259. (:foreground "grey50"))
  260. (((class color grayscale) (min-colors 88) (background dark))
  261. (:foreground "grey70"))
  262. (((class color) (min-colors 8) (background light))
  263. (:foreground "green"))
  264. (((class color) (min-colors 8) (background dark))
  265. (:foreground "yellow"))))
  266. "Face for fixed-with text like code snippets."
  267. :group 'org-faces
  268. :version "22.1")
  269. (defface org-verbatim
  270. (org-compatible-face nil
  271. '((((class color grayscale) (min-colors 88) (background light))
  272. (:foreground "grey50" :underline t))
  273. (((class color grayscale) (min-colors 88) (background dark))
  274. (:foreground "grey70" :underline t))
  275. (((class color) (min-colors 8) (background light))
  276. (:foreground "green" :underline t))
  277. (((class color) (min-colors 8) (background dark))
  278. (:foreground "yellow" :underline t))))
  279. "Face for fixed-with text like code snippets."
  280. :group 'org-faces
  281. :version "22.1")
  282. (defface org-agenda-structure ;; originally copied from font-lock-function-name-face
  283. (org-compatible-face nil
  284. '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
  285. (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
  286. (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
  287. (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
  288. (((class color) (min-colors 8)) (:foreground "blue" :bold t))
  289. (t (:bold t))))
  290. "Face used in agenda for captions and dates."
  291. :group 'org-faces)
  292. (unless (facep 'org-agenda-date)
  293. (copy-face 'org-agenda-structure 'org-agenda-date)
  294. (set-face-doc-string 'org-agenda-date
  295. "Face used in agenda for normal days."))
  296. (unless (facep 'org-agenda-date-weekend)
  297. (copy-face 'org-agenda-date 'org-agenda-date-weekend)
  298. (set-face-doc-string 'org-agenda-date-weekend
  299. "Face used in agenda for weekend days.
  300. See the variable `org-agenda-weekend-days' for a definition of which days
  301. belong to the weekend.")
  302. (when (fboundp 'set-face-attribute)
  303. (set-face-attribute 'org-agenda-date-weekend nil :weight 'bold)))
  304. (defface org-scheduled-today
  305. (org-compatible-face nil
  306. '((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen"))
  307. (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen"))
  308. (((class color) (min-colors 8)) (:foreground "green"))
  309. (t (:bold t :italic t))))
  310. "Face for items scheduled for a certain day."
  311. :group 'org-faces)
  312. (defface org-scheduled-previously
  313. (org-compatible-face nil
  314. '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
  315. (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
  316. (((class color) (min-colors 8) (background light)) (:foreground "red"))
  317. (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t))
  318. (t (:bold t))))
  319. "Face for items scheduled previously, and not yet done."
  320. :group 'org-faces)
  321. (defface org-upcoming-deadline
  322. (org-compatible-face nil
  323. '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
  324. (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
  325. (((class color) (min-colors 8) (background light)) (:foreground "red"))
  326. (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t))
  327. (t (:bold t))))
  328. "Face for items scheduled previously, and not yet done."
  329. :group 'org-faces)
  330. (defcustom org-agenda-deadline-faces
  331. '((1.0 . org-warning)
  332. (0.5 . org-upcoming-deadline)
  333. (0.0 . default))
  334. "Faces for showing deadlines in the agenda.
  335. This is a list of cons cells. The cdr of each cell is a face to be used,
  336. and it can also just be like '(:foreground \"yellow\").
  337. Each car is a fraction of the head-warning time that must have passed for
  338. this the face in the cdr to be used for display. The numbers must be
  339. given in descending order. The head-warning time is normally taken
  340. from `org-deadline-warning-days', but can also be specified in the deadline
  341. timestamp itself, like this:
  342. DEADLINE: <2007-08-13 Mon -8d>
  343. You may use d for days, w for weeks, m for months and y for years. Months
  344. and years will only be treated in an approximate fashion (30.4 days for a
  345. month and 365.24 days for a year)."
  346. :group 'org-faces
  347. :group 'org-agenda-daily/weekly
  348. :type '(repeat
  349. (cons
  350. (number :tag "Fraction of head-warning time passed")
  351. (sexp :tag "Face"))))
  352. (defface org-agenda-restriction-lock
  353. (org-compatible-face nil
  354. '((((class color) (min-colors 88) (background light)) (:background "yellow1"))
  355. (((class color) (min-colors 88) (background dark)) (:background "skyblue4"))
  356. (((class color) (min-colors 16) (background light)) (:background "yellow1"))
  357. (((class color) (min-colors 16) (background dark)) (:background "skyblue4"))
  358. (((class color) (min-colors 8)) (:background "cyan" :foreground "black"))
  359. (t (:inverse-video t))))
  360. "Face for showing the agenda restriction lock."
  361. :group 'org-faces)
  362. (defface org-time-grid ;; originally copied from font-lock-variable-name-face
  363. (org-compatible-face nil
  364. '((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
  365. (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
  366. (((class color) (min-colors 8)) (:foreground "yellow" :weight light))))
  367. "Face used for time grids."
  368. :group 'org-faces)
  369. (defconst org-level-faces
  370. '(org-level-1 org-level-2 org-level-3 org-level-4
  371. org-level-5 org-level-6 org-level-7 org-level-8
  372. ))
  373. (defcustom org-n-level-faces (length org-level-faces)
  374. "The number of different faces to be used for headlines.
  375. Org-mode defines 8 different headline faces, so this can be at most 8.
  376. If it is less than 8, the level-1 face gets re-used for level N+1 etc."
  377. :type 'number
  378. :group 'org-faces)
  379. (defface org-latex-and-export-specials
  380. (let ((font (cond ((assq :inherit custom-face-attributes)
  381. '(:inherit underline))
  382. (t '(:underline t)))))
  383. `((((class grayscale) (background light))
  384. (:foreground "DimGray" ,@font))
  385. (((class grayscale) (background dark))
  386. (:foreground "LightGray" ,@font))
  387. (((class color) (background light))
  388. (:foreground "SaddleBrown"))
  389. (((class color) (background dark))
  390. (:foreground "burlywood"))
  391. (t (,@font))))
  392. "Face used to highlight math latex and other special exporter stuff."
  393. :group 'org-faces)
  394. (provide 'org-faces)
  395. ;;; org-faces.el ends here