1 ;;; org-faces.el --- Face definitions for Org-mode.
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29 ;; This file contains the face definitions for Org.
36 (defun org-copy-face (old-face new-face docstring
&rest attributes
)
37 (unless (facep new-face
)
38 (if (fboundp 'set-face-attribute
)
41 (set-face-attribute new-face nil
:inherit old-face
)
42 (apply 'set-face-attribute new-face nil attributes
)
43 (set-face-doc-string new-face docstring
))
44 (copy-face old-face new-face
)
45 (if (fboundp 'set-face-doc-string
)
46 (set-face-doc-string new-face docstring
)))))
47 (put 'org-copy-face
'lisp-indent-function
2)
49 (defgroup org-faces nil
52 :group
'org-appearance
)
55 '((((background light
)) (:foreground
"white"))
56 (((background dark
)) (:foreground
"black")))
57 "Face used to hide leading stars in headlines.
58 The foreground color of this face should be equal to the background
62 (defface org-level-1
;; originally copied from font-lock-function-name-face
63 (org-compatible-face 'outline-1
64 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Blue1"))
65 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightSkyBlue"))
66 (((class color
) (min-colors 16) (background light
)) (:foreground
"Blue"))
67 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSkyBlue"))
68 (((class color
) (min-colors 8)) (:foreground
"blue" :bold t
))
70 "Face used for level 1 headlines."
73 (defface org-level-2
;; originally copied from font-lock-variable-name-face
74 (org-compatible-face 'outline-2
75 '((((class color
) (min-colors 16) (background light
)) (:foreground
"DarkGoldenrod"))
76 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightGoldenrod"))
77 (((class color
) (min-colors 8) (background light
)) (:foreground
"yellow"))
78 (((class color
) (min-colors 8) (background dark
)) (:foreground
"yellow" :bold t
))
80 "Face used for level 2 headlines."
83 (defface org-level-3
;; originally copied from font-lock-keyword-face
84 (org-compatible-face 'outline-3
85 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Purple"))
86 (((class color
) (min-colors 88) (background dark
)) (:foreground
"Cyan1"))
87 (((class color
) (min-colors 16) (background light
)) (:foreground
"Purple"))
88 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Cyan"))
89 (((class color
) (min-colors 8) (background light
)) (:foreground
"purple" :bold t
))
90 (((class color
) (min-colors 8) (background dark
)) (:foreground
"cyan" :bold t
))
92 "Face used for level 3 headlines."
95 (defface org-level-4
;; originally copied from font-lock-comment-face
96 (org-compatible-face 'outline-4
97 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Firebrick"))
98 (((class color
) (min-colors 88) (background dark
)) (:foreground
"chocolate1"))
99 (((class color
) (min-colors 16) (background light
)) (:foreground
"red"))
100 (((class color
) (min-colors 16) (background dark
)) (:foreground
"red1"))
101 (((class color
) (min-colors 8) (background light
)) (:foreground
"red" :bold t
))
102 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red" :bold t
))
104 "Face used for level 4 headlines."
107 (defface org-level-5
;; originally copied from font-lock-type-face
108 (org-compatible-face 'outline-5
109 '((((class color
) (min-colors 16) (background light
)) (:foreground
"ForestGreen"))
110 (((class color
) (min-colors 16) (background dark
)) (:foreground
"PaleGreen"))
111 (((class color
) (min-colors 8)) (:foreground
"green"))))
112 "Face used for level 5 headlines."
115 (defface org-level-6
;; originally copied from font-lock-constant-face
116 (org-compatible-face 'outline-6
117 '((((class color
) (min-colors 16) (background light
)) (:foreground
"CadetBlue"))
118 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Aquamarine"))
119 (((class color
) (min-colors 8)) (:foreground
"magenta"))))
120 "Face used for level 6 headlines."
123 (defface org-level-7
;; originally copied from font-lock-builtin-face
124 (org-compatible-face 'outline-7
125 '((((class color
) (min-colors 16) (background light
)) (:foreground
"Orchid"))
126 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSteelBlue"))
127 (((class color
) (min-colors 8)) (:foreground
"blue"))))
128 "Face used for level 7 headlines."
131 (defface org-level-8
;; originally copied from font-lock-string-face
132 (org-compatible-face 'outline-8
133 '((((class color
) (min-colors 16) (background light
)) (:foreground
"RosyBrown"))
134 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSalmon"))
135 (((class color
) (min-colors 8)) (:foreground
"green"))))
136 "Face used for level 8 headlines."
139 (defface org-special-keyword
;; originally copied from font-lock-string-face
140 (org-compatible-face nil
141 '((((class color
) (min-colors 16) (background light
)) (:foreground
"RosyBrown"))
142 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSalmon"))
144 "Face used for special keywords."
147 (defface org-drawer
;; originally copied from font-lock-function-name-face
148 (org-compatible-face nil
149 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Blue1"))
150 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightSkyBlue"))
151 (((class color
) (min-colors 16) (background light
)) (:foreground
"Blue"))
152 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSkyBlue"))
153 (((class color
) (min-colors 8)) (:foreground
"blue" :bold t
))
155 "Face used for drawers."
158 (defface org-property-value nil
159 "Face used for the value of a property."
163 (org-compatible-face nil
164 '((((class color
) (min-colors 16) (background light
))
165 (:background
"grey90" :weight normal
:slant normal
:strike-through nil
167 (((class color
) (min-colors 16) (background dark
))
168 (:background
"grey30" :weight normal
:slant normal
:strike-through nil
170 (((class color
) (min-colors 8))
171 (:background
"cyan" :foreground
"black"
172 :weight normal
:slant normal
:strike-through nil
174 (t (:inverse-video t
))))
175 "Face for column display of entry properties.
176 This is actually only part of the face definition for the text in column view.
177 The following faces apply, with this priority.
179 1. The color of the reference face. This is normally the level fact that
180 is used in the outline. In agenda-mode, it will be the face of the
181 first character in the line. The color is explicitly retained to
182 make sure that the column line still looks a bit like the structure
185 2. The `org-column' face.
187 3. The remaining properties of the reference face.
189 Since column view works by putting overlays with a display property
190 over individual characters in the buffer, the face of the underlining
191 character (this might for example be the a TODO keyword) might still
192 shine through in some properties. So when your column view looks
193 funny, with \"random\" colors, weight, strike-through, try to explicitly
194 set the properties in the `org-column' face. For example, set
195 :underline to nil, or the :slant to `normal'.
197 Under XEmacs, the rules are simpler, because the XEmacs version of
198 column view defines special faces for each outline level. See the file
199 `org-colview-xemacs.el' for details."
202 (defface org-column-title
203 (org-compatible-face nil
204 '((((class color
) (min-colors 16) (background light
))
205 (:background
"grey90" :underline t
:weight bold
))
206 (((class color
) (min-colors 16) (background dark
))
207 (:background
"grey30" :underline t
:weight bold
))
208 (((class color
) (min-colors 8))
209 (:background
"cyan" :foreground
"black" :underline t
:weight bold
))
210 (t (:inverse-video t
))))
211 "Face for column display of entry properties."
214 (when (fboundp 'set-face-attribute
)
215 ;; Make sure that a fixed-width face is used when we have a column table.
216 (set-face-attribute 'org-column nil
217 :height
(face-attribute 'default
:height
)
218 :family
(face-attribute 'default
:family
)))
220 (defface org-agenda-column-dateline
221 (org-compatible-face 'org-column
223 "Face used in agenda column view for datelines with summaries."
227 (org-compatible-face 'font-lock-warning-face
228 '((((class color
) (min-colors 16) (background light
)) (:foreground
"Red1" :bold t
))
229 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Pink" :bold t
))
230 (((class color
) (min-colors 8) (background light
)) (:foreground
"red" :bold t
))
231 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red" :bold t
))
233 "Face for deadlines and TODO keywords."
236 (defface org-archived
; similar to shadow
237 (org-compatible-face 'shadow
238 '((((class color grayscale
) (min-colors 88) (background light
))
239 (:foreground
"grey50"))
240 (((class color grayscale
) (min-colors 88) (background dark
))
241 (:foreground
"grey70"))
242 (((class color
) (min-colors 8) (background light
))
243 (:foreground
"green"))
244 (((class color
) (min-colors 8) (background dark
))
245 (:foreground
"yellow"))))
246 "Face for headline with the ARCHIVE tag."
250 '((((class color
) (background light
)) (:foreground
"Purple" :underline t
))
251 (((class color
) (background dark
)) (:foreground
"Cyan" :underline t
))
256 (defface org-footnote
257 '((((class color
) (background light
)) (:foreground
"Purple" :underline t
))
258 (((class color
) (background dark
)) (:foreground
"Cyan" :underline t
))
263 (defface org-ellipsis
264 '((((class color
) (background light
)) (:foreground
"DarkGoldenrod" :underline t
))
265 (((class color
) (background dark
)) (:foreground
"LightGoldenrod" :underline t
))
266 (t (:strike-through t
)))
267 "Face for the ellipsis in folded text."
271 '((((class color
) (background light
)) (:underline t
))
272 (((class color
) (background dark
)) (:underline t
))
274 "Face for link targets."
278 '((((class color
) (background light
)) (:foreground
"Purple" :underline t
))
279 (((class color
) (background dark
)) (:foreground
"Cyan" :underline t
))
281 "Face for date/time stamps."
284 (defface org-sexp-date
285 '((((class color
) (background light
)) (:foreground
"Purple"))
286 (((class color
) (background dark
)) (:foreground
"Cyan"))
288 "Face for diary-like sexp date specifications."
293 "Default face for tags.
294 Note that the variable `org-tag-faces' can be used to overrule this face for
298 (defface org-todo
; font-lock-warning-face
299 (org-compatible-face nil
300 '((((class color
) (min-colors 16) (background light
)) (:foreground
"Red1" :bold t
))
301 (((class color
) (min-colors 16) (background dark
)) (:foreground
"Pink" :bold t
))
302 (((class color
) (min-colors 8) (background light
)) (:foreground
"red" :bold t
))
303 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red" :bold t
))
304 (t (:inverse-video t
:bold t
))))
305 "Face for TODO keywords."
308 (defface org-done
;; originally copied from font-lock-type-face
309 (org-compatible-face nil
310 '((((class color
) (min-colors 16) (background light
)) (:foreground
"ForestGreen" :bold t
))
311 (((class color
) (min-colors 16) (background dark
)) (:foreground
"PaleGreen" :bold t
))
312 (((class color
) (min-colors 8)) (:foreground
"green"))
314 "Face used for todo keywords that indicate DONE items."
317 (defface org-agenda-done
;; originally copied from font-lock-type-face
318 (org-compatible-face nil
319 '((((class color
) (min-colors 16) (background light
)) (:foreground
"ForestGreen"))
320 (((class color
) (min-colors 16) (background dark
)) (:foreground
"PaleGreen"))
321 (((class color
) (min-colors 8)) (:foreground
"green"))
323 "Face used in agenda, to indicate lines switched to DONE.
324 This face is used to de-emphasize items that where brightly colord in the
325 agenda because they were things to do, or overdue. The DONE state itself
326 is of course immediately visible, but for example a passed deadline is
327 \(by default) very bright read. This face could be simply the default face
328 of the frame, for example."
331 (defface org-headline-done
;; originally copied from font-lock-string-face
332 (org-compatible-face nil
333 '((((class color
) (min-colors 16) (background light
)) (:foreground
"RosyBrown"))
334 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSalmon"))
335 (((class color
) (min-colors 8) (background light
)) (:bold nil
))))
336 "Face used to indicate that a headline is DONE.
337 This face is only used if `org-fontify-done-headline' is set. If applies
338 to the part of the headline after the DONE keyword."
341 (defcustom org-faces-easy-properties
342 '((todo .
:foreground
) (tag .
:foreground
) (priority .
:foreground
))
343 "The property changes by easy faces.
344 This is an alist, the keys show the area of application, the values
345 can be `:foreground' or `:background'. A color string for special
346 keywords will then be interpreted as either foreground or background
351 (cons (choice (const todo
) (const tag
) (const priority
))
352 (choice (const :foreground
) (const :background
)))))
354 (defcustom org-todo-keyword-faces nil
355 "Faces for specific TODO keywords.
356 This is a list of cons cells, with TODO keywords in the car
357 and faces in the cdr. The face can be a symbol, a color
358 as a string (in which case the rest is inherited from the `org-todo' face),
359 or a property list of attributes, like
360 (:foreground \"blue\" :weight bold :underline t).
361 If it is a color string, the variable `org-faces-easy-properties'
362 determines if it is a foreground or a background color."
367 (string :tag
"Keyword")
369 (string :tag
"Color")
370 (sexp :tag
"Face")))))
372 (defcustom org-priority-faces nil
373 "Faces for specific Priorities.
374 This is a list of cons cells, with priority character in the car
375 and faces in the cdr. The face can be a symbol, a color as
376 as a string, or a property list of attributes, like
377 (:foreground \"blue\" :weight bold :underline t).
378 If it is a color string, the variable `org-faces-easy-properties'
379 determines if it is a foreground or a background color."
384 (character :tag
"Priority")
386 (string :tag
"Color")
387 (sexp :tag
"Face")))))
389 (defvar org-tags-special-faces-re nil
)
390 (defun org-set-tag-faces (var value
)
393 (setq org-tags-special-faces-re nil
)
394 (setq org-tags-special-faces-re
395 (concat ":\\(" (mapconcat 'car value
"\\|") "\\):"))))
397 (defface org-checkbox
398 (org-compatible-face 'bold
400 "Face for checkboxes"
404 (org-copy-face 'org-todo
'org-checkbox-statistics-todo
405 "Face used for unfinished checkbox statistics.")
407 (org-copy-face 'org-done
'org-checkbox-statistics-done
408 "Face used for finished checkbox statistics.")
410 (defcustom org-tag-faces nil
411 "Faces for specific tags.
412 This is a list of cons cells, with tags in the car and faces in the cdr.
413 The face can be a symbol, a foreground color (in which case the rest is
414 inherited from the `org-tag' face) or a property list of attributes,
415 like (:foreground \"blue\" :weight bold :underline t).
416 If you set this variable through customize, it will immediately be effective
417 in new buffers and in modified lines.
418 If you set it with Lisp, a restart of Emacs is required to activate the
422 :set
'org-set-tag-faces
427 (string :tag
"Foreground color")
428 (sexp :tag
"Face")))))
430 (defface org-table
;; originally copied from font-lock-function-name-face
431 (org-compatible-face nil
432 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Blue1"))
433 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightSkyBlue"))
434 (((class color
) (min-colors 16) (background light
)) (:foreground
"Blue"))
435 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSkyBlue"))
436 (((class color
) (min-colors 8) (background light
)) (:foreground
"blue"))
437 (((class color
) (min-colors 8) (background dark
)))))
438 "Face used for tables."
442 (org-compatible-face nil
443 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Firebrick"))
444 (((class color
) (min-colors 88) (background dark
)) (:foreground
"chocolate1"))
445 (((class color
) (min-colors 8) (background light
)) (:foreground
"red"))
446 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red"))
447 (t (:bold t
:italic t
))))
452 (org-compatible-face 'shadow
453 '((((class color grayscale
) (min-colors 88) (background light
))
454 (:foreground
"grey50"))
455 (((class color grayscale
) (min-colors 88) (background dark
))
456 (:foreground
"grey70"))
457 (((class color
) (min-colors 8) (background light
))
458 (:foreground
"green"))
459 (((class color
) (min-colors 8) (background dark
))
460 (:foreground
"yellow"))))
461 "Face for fixed-width text like code snippets."
465 (defface org-meta-line
466 (org-compatible-face 'font-lock-comment-face nil
)
467 "Face for meta lines startin with \"#+\"."
471 (defface org-document-title
472 '((((class color
) (background light
)) (:foreground
"midnight blue" :weight bold
:height
1.44))
473 (((class color
) (background dark
)) (:foreground
"pale turquoise" :weight bold
:height
1.44))
474 (t (:weight bold
:height
1.44)))
475 "Face for document title, i.e. that which follows the #+TITLE: keyword."
478 (defface org-document-info
479 '((((class color
) (background light
)) (:foreground
"midnight blue"))
480 (((class color
) (background dark
)) (:foreground
"pale turquoise"))
482 "Face for document date, author and email; i.e. that which
483 follows a #+DATE:, #+AUTHOR: or #+EMAIL: keyword."
486 (defface org-document-info-keyword
487 (org-compatible-face 'shadow
488 '((((class color grayscale
) (min-colors 88) (background light
))
489 (:foreground
"grey50"))
490 (((class color grayscale
) (min-colors 88) (background dark
))
491 (:foreground
"grey70"))
492 (((class color
) (min-colors 8) (background light
))
493 (:foreground
"green"))
494 (((class color
) (min-colors 8) (background dark
))
495 (:foreground
"yellow"))))
496 "Face for #+TITLE:, #+AUTHOR:, #+EMAIL: and #+DATE: keywords."
500 (org-compatible-face 'shadow
501 '((((class color grayscale
) (min-colors 88) (background light
))
502 (:foreground
"grey50"))
503 (((class color grayscale
) (min-colors 88) (background dark
))
504 (:foreground
"grey70"))
505 (((class color
) (min-colors 8) (background light
))
506 (:foreground
"green"))
507 (((class color
) (min-colors 8) (background dark
))
508 (:foreground
"yellow"))))
509 "Face text in #+begin ... #+end blocks."
513 (defface org-verbatim
514 (org-compatible-face 'shadow
515 '((((class color grayscale
) (min-colors 88) (background light
))
516 (:foreground
"grey50" :underline t
))
517 (((class color grayscale
) (min-colors 88) (background dark
))
518 (:foreground
"grey70" :underline t
))
519 (((class color
) (min-colors 8) (background light
))
520 (:foreground
"green" :underline t
))
521 (((class color
) (min-colors 8) (background dark
))
522 (:foreground
"yellow" :underline t
))))
523 "Face for fixed-with text like code snippets."
527 (org-copy-face 'org-block
'org-quote
528 "Face for #+BEGIN_QUOTE ... #+END_QUOTE blocks.")
529 (org-copy-face 'org-block
'org-verse
530 "Face for #+BEGIN_VERSE ... #+END_VERSE blocks.")
532 (defcustom org-fontify-quote-and-verse-blocks nil
533 "Non-nil means, add a special face to #+begin_quote and #+begin_verse block.
534 When nil, format these as normal Org. This is the default, because the
535 content of these blocks will still be treated as Org syntax."
539 (defface org-clock-overlay
;; copied from secondary-selection
540 (org-compatible-face nil
541 '((((class color
) (min-colors 88) (background light
))
542 (:background
"yellow1"))
543 (((class color
) (min-colors 88) (background dark
))
544 (:background
"SkyBlue4"))
545 (((class color
) (min-colors 16) (background light
))
546 (:background
"yellow"))
547 (((class color
) (min-colors 16) (background dark
))
548 (:background
"SkyBlue4"))
549 (((class color
) (min-colors 8))
550 (:background
"cyan" :foreground
"black"))
551 (t (:inverse-video t
))))
552 "Basic face for displaying the secondary selection."
555 (defface org-agenda-structure
;; originally copied from font-lock-function-name-face
556 (org-compatible-face nil
557 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Blue1"))
558 (((class color
) (min-colors 88) (background dark
)) (:foreground
"LightSkyBlue"))
559 (((class color
) (min-colors 16) (background light
)) (:foreground
"Blue"))
560 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightSkyBlue"))
561 (((class color
) (min-colors 8)) (:foreground
"blue" :bold t
))
563 "Face used in agenda for captions and dates."
566 (org-copy-face 'org-agenda-structure
'org-agenda-date
567 "Face used in agenda for normal days.")
569 (org-copy-face 'org-agenda-date
'org-agenda-date-today
570 "Face used in agenda for today."
571 :weight
'bold
:italic
't
)
573 (org-copy-face 'secondary-selection
'org-agenda-clocking
574 "Face marking the current clock item in the agenda.")
576 (org-copy-face 'org-agenda-date
'org-agenda-date-weekend
577 "Face used in agenda for weekend days.
578 See the variable `org-agenda-weekend-days' for a definition of which days
579 belong to the weekend."
582 (defface org-scheduled
583 (org-compatible-face nil
584 '((((class color
) (min-colors 88) (background light
)) (:foreground
"DarkGreen"))
585 (((class color
) (min-colors 88) (background dark
)) (:foreground
"PaleGreen"))
586 (((class color
) (min-colors 8)) (:foreground
"green"))
587 (t (:bold t
:italic t
))))
588 "Face for items scheduled for a certain day."
591 (defface org-scheduled-today
592 (org-compatible-face nil
593 '((((class color
) (min-colors 88) (background light
)) (:foreground
"DarkGreen"))
594 (((class color
) (min-colors 88) (background dark
)) (:foreground
"PaleGreen"))
595 (((class color
) (min-colors 8)) (:foreground
"green"))
596 (t (:bold t
:italic t
))))
597 "Face for items scheduled for a certain day."
600 (defface org-agenda-dimmed-todo-face
601 '((((background light
)) (:foreground
"grey50"))
602 (((background dark
)) (:foreground
"grey50")))
603 "Face used to dim blocked tasks in the agenda."
606 (defface org-scheduled-previously
607 (org-compatible-face nil
608 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Firebrick"))
609 (((class color
) (min-colors 88) (background dark
)) (:foreground
"chocolate1"))
610 (((class color
) (min-colors 8) (background light
)) (:foreground
"red"))
611 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red" :bold t
))
613 "Face for items scheduled previously, and not yet done."
616 (defface org-upcoming-deadline
617 (org-compatible-face nil
618 '((((class color
) (min-colors 88) (background light
)) (:foreground
"Firebrick"))
619 (((class color
) (min-colors 88) (background dark
)) (:foreground
"chocolate1"))
620 (((class color
) (min-colors 8) (background light
)) (:foreground
"red"))
621 (((class color
) (min-colors 8) (background dark
)) (:foreground
"red" :bold t
))
623 "Face for items scheduled previously, and not yet done."
626 (defcustom org-agenda-deadline-faces
627 '((1.0 . org-warning
)
628 (0.5 . org-upcoming-deadline
)
630 "Faces for showing deadlines in the agenda.
631 This is a list of cons cells. The cdr of each cell is a face to be used,
632 and it can also just be like '(:foreground \"yellow\").
633 Each car is a fraction of the head-warning time that must have passed for
634 this the face in the cdr to be used for display. The numbers must be
635 given in descending order. The head-warning time is normally taken
636 from `org-deadline-warning-days', but can also be specified in the deadline
637 timestamp itself, like this:
639 DEADLINE: <2007-08-13 Mon -8d>
641 You may use d for days, w for weeks, m for months and y for years. Months
642 and years will only be treated in an approximate fashion (30.4 days for a
643 month and 365.24 days for a year)."
645 :group
'org-agenda-daily
/weekly
648 (number :tag
"Fraction of head-warning time passed")
649 (sexp :tag
"Face"))))
651 (defface org-agenda-restriction-lock
652 (org-compatible-face nil
653 '((((class color
) (min-colors 88) (background light
)) (:background
"yellow1"))
654 (((class color
) (min-colors 88) (background dark
)) (:background
"skyblue4"))
655 (((class color
) (min-colors 16) (background light
)) (:background
"yellow1"))
656 (((class color
) (min-colors 16) (background dark
)) (:background
"skyblue4"))
657 (((class color
) (min-colors 8)) (:background
"cyan" :foreground
"black"))
658 (t (:inverse-video t
))))
659 "Face for showing the agenda restriction lock."
662 (defface org-time-grid
;; originally copied from font-lock-variable-name-face
663 (org-compatible-face nil
664 '((((class color
) (min-colors 16) (background light
)) (:foreground
"DarkGoldenrod"))
665 (((class color
) (min-colors 16) (background dark
)) (:foreground
"LightGoldenrod"))
666 (((class color
) (min-colors 8)) (:foreground
"yellow" :weight light
))))
667 "Face used for time grids."
670 (defface org-agenda-diary
671 (org-compatible-face 'default
673 "Face used for agenda entries that come from the Emacs diary."
676 (defconst org-level-faces
677 '(org-level-1 org-level-2 org-level-3 org-level-4
678 org-level-5 org-level-6 org-level-7 org-level-8
681 (defcustom org-n-level-faces
(length org-level-faces
)
682 "The number of different faces to be used for headlines.
683 Org-mode defines 8 different headline faces, so this can be at most 8.
684 If it is less than 8, the level-1 face gets re-used for level N+1 etc."
688 (defface org-latex-and-export-specials
689 (let ((font (cond ((assq :inherit custom-face-attributes
)
690 '(:inherit underline
))
691 (t '(:underline t
)))))
692 `((((class grayscale
) (background light
))
693 (:foreground
"DimGray" ,@font
))
694 (((class grayscale
) (background dark
))
695 (:foreground
"LightGray" ,@font
))
696 (((class color
) (background light
))
697 (:foreground
"SaddleBrown"))
698 (((class color
) (background dark
))
699 (:foreground
"burlywood"))
701 "Face used to highlight math latex and other special exporter stuff."
704 (org-copy-face 'modeline
'org-mode-line-clock
705 "Face used for clock display in mode line.")
706 (org-copy-face 'modeline
'org-mode-line-clock-overrun
707 "Face used for clock display for overrun tasks in mode line."
712 ;; arch-tag: 9dab5f91-c4b9-4d6f-bac3-1f6211ad0a04
714 ;;; org-faces.el ends here