[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")
- [nongnu] elpa/subed 961e5eb 343/389: More subed-vtt fixes: require subed-vtt, validate better, (continued)
- [nongnu] elpa/subed 961e5eb 343/389: More subed-vtt fixes: require subed-vtt, validate better, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 87b3823 353/389: subed-split-subtitle works at the beginning or end of subtitle text, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 3b4b56a 384/389: Merge pull request #49 from sachac/fix-vtt-spaces, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed bee9e63 342/389: subed-vtt: Fix syncing point with player, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 016c6a5 363/389: subed-split-subtitle: Handle more cases, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 6164f88 380/389: Keep track of video being played, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 70561f0 381/389: Make hours optional in VTT files, following the spec, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed bf3e832 382/389: Check if subed--cps-overlay exists before trying to update it, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed b6e08c2 383/389: Handle spaces in between VTT subtitles, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 564b6fe 386/389: Add preliminary support for comments in VTT files, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed d5751c5 334/389: Change default faces to inherit color values,
ELPA Syncer <=
- [nongnu] elpa/subed 65ed21c 350/389: Add tests/test-subed-vtt.el, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 6eba992 376/389: Add ability to proportionally scale subtitles., ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 7d1aa59 385/389: Make timestamp-to-msecs a generic function, ELPA Syncer, 2021/12/03