diff options
author | Craig Earls <enderw88@gmail.com> | 2014-09-10 07:11:09 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2014-09-10 07:11:09 -0700 |
commit | 0f9212071ac65b9af46187c03adeecc3a76acaa8 (patch) | |
tree | 76abf595b96273e59c0cc717ca6305a40bd3e6fb /lisp/ledger-fonts.el | |
parent | 64c541a3d80eca52e1793acb2429247ec2566157 (diff) | |
download | fork-ledger-0f9212071ac65b9af46187c03adeecc3a76acaa8.tar.gz fork-ledger-0f9212071ac65b9af46187c03adeecc3a76acaa8.tar.bz2 fork-ledger-0f9212071ac65b9af46187c03adeecc3a76acaa8.zip |
Added some missing faces for xact amounts.
Diffstat (limited to 'lisp/ledger-fonts.el')
-rw-r--r-- | lisp/ledger-fonts.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ledger-fonts.el b/lisp/ledger-fonts.el index b5495460..31cba9bf 100644 --- a/lisp/ledger-fonts.el +++ b/lisp/ledger-fonts.el @@ -176,11 +176,21 @@ "Face for Ledger accounts" :group 'ledger-faces) +(defface ledger-font-posting-amount-cleared-face + `((t :inherit ledger-font-posting-account-cleared-face)) + "Face for Ledger accounts" + :group 'ledger-faces) + (defface ledger-font-posting-account-pending-face `((t :inherit ledger-font-pending-face)) "Face for Ledger accounts" :group 'ledger-faces) +(defface ledger-font-posting-amount-pending-face + `((t :inherit ledger-font-posting-account-pending-face)) + "Face for Ledger accounts" + :group 'ledger-faces) + (defface ledger-font-posting-amount-face `((t :foreground "#cb4b16" )) "Face for Ledger amounts" |