[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
main bebb48dd: Improve contrast of some font faces
From: |
Arash Esbati |
Subject: |
main bebb48dd: Improve contrast of some font faces |
Date: |
Thu, 8 Aug 2024 11:42:53 -0400 (EDT) |
branch: main
commit bebb48dd34175728dd36b1d887fb69cf149dd290
Author: Miguel V. S. Frasson <mvsfrasson@gmail.com>
Commit: Arash Esbati <arash@gnu.org>
Improve contrast of some font faces
* font-latex.el (font-latex-bold-face, font-latex-italic-face)
(font-latex-underline-face, font-latex-string-face)
(font-latex-script-char-face): Adjust color specifications.
https://lists.gnu.org/archive/html/auctex-devel/2024-07/msg00075.html
---
font-latex.el | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/font-latex.el b/font-latex.el
index 6cd5c24a..3a14b584 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -1149,7 +1149,7 @@ have changed."
(((class color) (background light))
(:foreground "DarkOliveGreen" ,@font))
(((class color) (background dark))
- (:foreground "OliveDrab" ,@font))
+ (:foreground "OliveDrab2" ,@font))
(t (,@font))))
"Face used to highlight text to be typeset in bold."
:group 'font-latex-highlighting-faces)
@@ -1163,7 +1163,7 @@ have changed."
(((class color) (background light))
(:foreground "DarkOliveGreen" ,@font))
(((class color) (background dark))
- (:foreground "OliveDrab" ,@font))
+ (:foreground "OliveDrab2" ,@font))
(t (,@font))))
"Face used to highlight text to be typeset in italic."
:group 'font-latex-highlighting-faces)
@@ -1177,7 +1177,7 @@ have changed."
(((class color) (background light))
(:foreground "DarkOliveGreen" ,@font))
(((class color) (background dark))
- (:foreground "OliveDrab" ,@font))
+ (:foreground "OliveDrab2" ,@font))
(t (,@font))))
"Face used to highlight text to be underlined."
:group 'font-latex-highlighting-faces)
@@ -1215,7 +1215,7 @@ have changed."
(((class grayscale) (background dark))
(:foreground "LightGray" ,@font))
(((class color) (background light))
- (:foreground "RosyBrown"))
+ (:foreground "RosyBrown4"))
(((class color) (background dark))
(:foreground "LightSalmon"))
(t (,@font))))
@@ -1263,13 +1263,13 @@ have changed."
(defface font-latex-script-char-face
(let ((font '(:inherit underline)))
`((((class grayscale) (background light))
- (:foreground "DarkGray" ,@font))
+ (:foreground "gray25" ,@font))
(((class grayscale) (background dark))
(:foreground "gray" ,@font))
(((class color) (background light))
- (:foreground "salmon"))
- (((class color) (background dark))
(:foreground "DarkRed"))
+ (((class color) (background dark))
+ (:foreground "salmon"))
(t (,@font))))
"Face used for the script chars ^ and _."
:group 'font-latex-highlighting-faces)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- main bebb48dd: Improve contrast of some font faces,
Arash Esbati <=