[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote 2d563cfa30 2/2: Simplify faces to work with all
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote 2d563cfa30 2/2: Simplify faces to work with all themes |
Date: |
Tue, 5 Jul 2022 03:57:31 -0400 (EDT) |
branch: externals/denote
commit 2d563cfa306611b8818eee050d8197dc46031521
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Simplify faces to work with all themes
These colours come from my modus-themes. Users of other themes will
probably not like the inconsistency they introduce.
I will update the modus-themes separately.
---
denote-faces.el | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/denote-faces.el b/denote-faces.el
index 2d8c0b4778..49a1e8b8ff 100644
--- a/denote-faces.el
+++ b/denote-faces.el
@@ -45,11 +45,7 @@ equivalent), not in Dired."
:group 'denote-faces)
(defface denote-faces-date
- '((((class color) (min-colors 88) (background light))
- :foreground "#00538b")
- (((class color) (min-colors 88) (background dark))
- :foreground "#00d3d0")
- (t :inherit font-lock-variable-name-face))
+ '((t :inherit font-lock-variable-name-face))
"Face for file name date in Dired buffers.
This is the part of the identifier that covers the year, month,
and day."
@@ -73,12 +69,7 @@ and seconds."
:group 'denote-faces)
(defface denote-faces-keywords
- '((default :inherit bold)
- (((class color) (min-colors 88) (background light))
- :foreground "#8f0075")
- (((class color) (min-colors 88) (background dark))
- :foreground "#f78fe7")
- (t :inherit font-lock-builtin-face))
+ '((t :inherit font-lock-builtin-face))
"Face for file name keywords in Dired buffers."
:group 'denote-faces)