branch: externals/doric-themes
commit 8d9b6f83cb8222a4a2cf8380ae4b8870ddaee112
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Make bold+italic faces use the same foreground as italic ones
This is partially in response to the issue raised by Prashnu Sharma
where font-lock-keyword-face and font-lock-type-face look strange when
they are close to each other:
<https://github.com/protesilaos/doric-themes/issues/2>.
More generally though, the bold+italic faces should not look like bold
to help them stand apart a bit more.
---
doric-themes.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doric-themes.el b/doric-themes.el
index c0be3022b3..4944b56852 100644
--- a/doric-themes.el
+++ b/doric-themes.el
@@ -1288,7 +1288,7 @@ the list becomes the last. Do not modify THEMES in the
process."
,@(doric-themes-prepare-faces
doric-themes-success-foreground-only-faces :inherit ''bold :foreground
'fg-faint-green)
,@(doric-themes-prepare-faces doric-themes-bold-faces :inherit
''bold :foreground 'fg-shadow-intense)
- ,@(doric-themes-prepare-faces doric-themes-bold-italic-faces
:inherit ''bold-italic :foreground 'fg-shadow-intense)
+ ,@(doric-themes-prepare-faces doric-themes-bold-italic-faces
:inherit ''bold-italic :foreground 'fg-shadow-subtle)
,@(doric-themes-prepare-faces doric-themes-italic-faces :inherit
''italic :foreground 'fg-shadow-subtle)
,@(doric-themes-prepare-faces doric-themes-underline-link-faces
:inherit ''underline :foreground 'fg-accent)
,@(doric-themes-prepare-faces
doric-themes-underline-emphasis-faces :inherit ''(underline italic) :foreground
'fg-shadow-subtle)