emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/subed d5751c5 334/389: Change default faces to inherit col


From: ELPA Syncer
Subject: [nongnu] elpa/subed d5751c5 334/389: Change default faces to inherit color values
Date: Fri, 3 Dec 2021 11:00:52 -0500 (EST)

branch: elpa/subed
commit d5751c5bc82ae767bcc7fe3ff28e22654224c07f
Author: Dylan McDowell <dylanjm@users.noreply.github.com>
Commit: Dylan McDowell <dylanjm@users.noreply.github.com>

    Change default faces to inherit color values
    
    Previously, color values were hardcoded. Now these values should match more
    user's themes.
    
    Refs #16
---
 subed/subed-config.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/subed/subed-config.el b/subed/subed-config.el
index a78f759..8c0595a 100644
--- a/subed/subed-config.el
+++ b/subed/subed-config.el
@@ -49,19 +49,19 @@
 ;; Syntax highlighting
 
 (defface subed-srt-id-face
-  '((t (:foreground "sandybrown")))
+  '((t (:inherit 'font-lock-constant-face)))
   "Each subtitle's consecutive number")
 
 (defface subed-srt-time-face
-  '((t (:foreground "skyblue")))
+  '((t (:inherit 'font-lock-string-face)))
   "Start and stop times of subtitles")
 
 (defface subed-srt-time-separator-face
-  '((t (:foreground "dimgray")))
+  '((t (:inherit 'font-lock-comment-face)))
   "Separator between the start and stop time (\" --> \")")
 
 (defface subed-srt-text-face
-  '((t (:foreground "brightyellow")))
+  '((t (:inherit 'default)))
   "Text of the subtitle")
 
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]