diff options
author | Craig Earls <enderw88@gmail.com> | 2013-02-10 20:11:03 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-02-10 20:11:03 -0700 |
commit | e460316774e9e0f61d447dfde16e92313eb30535 (patch) | |
tree | 1d1452f5dd8d2c617186d1724240072fad5201d6 /lisp/ldg-fonts.el | |
parent | 30c95ea9bba5ebe2e202a3dda3af6431ea21337c (diff) | |
download | fork-ledger-e460316774e9e0f61d447dfde16e92313eb30535.tar.gz fork-ledger-e460316774e9e0f61d447dfde16e92313eb30535.tar.bz2 fork-ledger-e460316774e9e0f61d447dfde16e92313eb30535.zip |
Fixes bug 885, highlighting was removing bolding
Inadvertantly left a :weight in the highlight face that was over ring the base face weight
Diffstat (limited to 'lisp/ldg-fonts.el')
-rw-r--r-- | lisp/ldg-fonts.el | 16 |
1 files 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) |