branch: elpa/subed commit d5751c5bc82ae767bcc7fe3ff28e22654224c07f Author: Dylan McDowell <dyla...@users.noreply.github.com> Commit: Dylan McDowell <dyla...@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")