org-faces.el: Add foreground color to org-table-header face

* lisp/org-faces.el (org-table-header): Add foreground color to
org-table-header face, to ensure readability when using a dark theme.
This commit is contained in:
Jack Kamm 2020-02-07 18:04:59 -08:00 committed by Bastien
parent b13cf9deff
commit c08ce3e2b1
1 changed files with 3 additions and 1 deletions

View File

@ -364,7 +364,9 @@ changes."
"Face used for tables."
:group 'org-faces)
(defface org-table-header '((t :inherit org-table :background "LightGray"))
(defface org-table-header '((t :inherit org-table
:background "LightGray"
:foreground "Black"))
"Face for table header."
:group 'org-faces)