From 1acd5f60cd18ea1bd77c0458fa061a0f708a5ad0 Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Tue, 23 Jun 2015 16:28:44 +0200 Subject: [PATCH] hydra.el (hydra-face-blue): Customize for dark themes --- hydra.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hydra.el b/hydra.el index 16261dc..0272348 100644 --- a/hydra.el +++ b/hydra.el @@ -214,7 +214,10 @@ Every other command exits the Hydra." :group 'hydra) (defface hydra-face-blue - '((t (:foreground "#0000FF" :bold t))) + '((((class color) (background light)) + :foreground "#0000FF" :bold t) + (((class color) (background dark)) + :foreground "#8ac6f2" :bold t)) "Blue Hydra heads exit the Hydra. Every other command exits as well.")