X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=emacs%2Fnotmuch-crypto.el;h=68a7e9f3735a814ce70b55948c3cf6ade687aea9;hp=73ebf51df0b825d38e88506ecb34c19b5edfa50b;hb=60ac94fe58635f9c40724afa0f35965fc9ff1afc;hpb=3b63856568a8b0153801386fcc2030b228a5f99d diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el index 73ebf51d..68a7e9f3 100644 --- a/emacs/notmuch-crypto.el +++ b/emacs/notmuch-crypto.el @@ -1,4 +1,4 @@ -;; notmuch-crypto.el --- functions for handling display of cryptographic metadata. +;;; notmuch-crypto.el --- functions for handling display of cryptographic metadata. ;; ;; Copyright © Jameson Rollins ;; @@ -15,10 +15,12 @@ ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License -;; along with Notmuch. If not, see . +;; along with Notmuch. If not, see . ;; ;; Authors: Jameson Rollins +;;; Code: + (require 'notmuch-lib) (defcustom notmuch-crypto-process-mime nil @@ -40,7 +42,12 @@ mode." :group 'notmuch-crypto) (defface notmuch-crypto-part-header - '((t (:foreground "blue"))) + '((((class color) + (background dark)) + (:foreground "LightBlue1")) + (((class color) + (background light)) + (:foreground "blue"))) "Face used for crypto parts headers." :group 'notmuch-crypto :group 'notmuch-faces) @@ -174,3 +181,5 @@ mode." ;; (provide 'notmuch-crypto) + +;;; notmuch-crypto.el ends here