branch: externals/mct commit 9832ddd8e5736792bb739b5cf190ac19831c73cb Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Simplify mct-highlight-candidate face Let themes decide how best to style it. Thanks to Tomasz Hołubowicz for the side note about this face in issue 1 over at the GitHub mirror: <https://github.com/protesilaos/mct/issues/1>. --- mct.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/mct.el b/mct.el index 1f6c4fd778..02b0e2e7b2 100644 --- a/mct.el +++ b/mct.el @@ -196,12 +196,7 @@ See `completions-format' for possible values." 'mct-hl-line 'mct-highlight-candidate "0.3.0") (defface mct-highlight-candidate - '((default :extend t) - (((class color) (min-colors 88) (background light)) - :background "#b0d8ff" :foreground "#000000") - (((class color) (min-colors 88) (background dark)) - :background "#103265" :foreground "#ffffff") - (t :inherit highlight)) + '((t :inherit highlight :extend t)) "Face for current candidate in the completions' buffer." :group 'mct)