From e460316774e9e0f61d447dfde16e92313eb30535 Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Sun, 10 Feb 2013 20:11:03 -0700 Subject: Fixes bug 885, highlighting was removing bolding Inadvertantly left a :weight in the highlight face that was over ring the base face weight --- lisp/ldg-fonts.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lisp/ldg-fonts.el b/lisp/ldg-fonts.el index 62192881..6ddc811c 100644 --- a/lisp/ldg-fonts.el +++ b/lisp/ldg-fonts.el @@ -27,17 +27,17 @@ :group 'ledger-faces) (defface ledger-font-cleared-face - `((t :foreground "grey70" :weight normal )) + `((t :foreground "#657b83" :weight normal )) "Default face for cleared (*) transactions" :group 'ledger-faces) (defface ledger-font-highlight-face - `((t :background "#003366" :weight normal )) + `((t :background "#eee8d5")) "Default face for transaction under point" :group 'ledger-faces) (defface ledger-font-pending-face - `((t :foreground "yellow" :weight normal )) + `((t :foreground "#cb4b16" :weight normal )) "Default face for pending (!) transactions" :group 'ledger-faces) @@ -47,7 +47,7 @@ :group 'ledger-faces) (defface ledger-font-posting-account-face - `((t :foreground "lightblue" )) + `((t :foreground "#268bd2" )) "Face for Ledger accounts" :group 'ledger-faces) @@ -57,22 +57,22 @@ :group 'ledger-faces) (defface ledger-font-comment-face - `((t :foreground "orange" )) + `((t :foreground "#93a1a1" :slant italic)) "Face for Ledger comments" :group 'ledger-faces) (defface ledger-font-reconciler-uncleared-face - `((t :foreground "green" :weight normal )) + `((t :foreground "#dc322f" :weight bold )) "Default face for uncleared transactions in the reconcile window" :group 'ledger-faces) (defface ledger-font-reconciler-cleared-face - `((t :foreground "grey70" :weight normal )) + `((t :foreground "#657b83" :weight normal )) "Default face for cleared (*) transactions in the reconcile window" :group 'ledger-faces) (defface ledger-font-reconciler-pending-face - `((t :foreground "yellow" :weight normal )) + `((t :foreground "#cb4b16" :weight normal )) "Default face for pending (!) transactions in the reconcile window" :group 'ledger-faces) -- cgit v1.2.3