aboutsummaryrefslogtreecommitdiff
path: root/utils/register.py
diff options
context:
space:
mode:
authorAdrián Oliva <adrian.oliva@cimat.mx>2023-05-07 17:56:57 -0600
committerAdrián Oliva <adrian.oliva@cimat.mx>2023-05-07 17:56:57 -0600
commit4abdee1dc1891ad212a48040d89ebc5b9dcc6088 (patch)
treecc5d86b432eee4777c52931a089f710d7e779259 /utils/register.py
parent3809d99e78466142c4dd8247e40f0826f436e8b6 (diff)
downloadLedger.py-4abdee1dc1891ad212a48040d89ebc5b9dcc6088.tar.gz
Ledger.py-4abdee1dc1891ad212a48040d89ebc5b9dcc6088.zip
Balance now has colors!
Moved color functions to its own file. Now the colored output can be easily edited in general.
Diffstat (limited to '')
-rw-r--r--utils/register.py17
1 files changed, 1 insertions, 16 deletions
diff --git a/utils/register.py b/utils/register.py
index b067e56..5fdbf06 100644
--- a/utils/register.py
+++ b/utils/register.py
@@ -1,24 +1,9 @@
from utils.read_file import entry
+from utils.colored_output import *
from typing import List, Iterator
import re
import shutil
-import colorama
-
-def date_f(text: str):
- return text
-
-def comment_f(text: str):
- return colorama.Style.BRIGHT + text + colorama.Style.RESET_ALL
-
-def account_f(text: str):
- return colorama.Fore.BLUE + text + colorama.Style.RESET_ALL
-
-def price_f(text: str):
- if '-' in text:
- return colorama.Fore.RED + text + colorama.Style.RESET_ALL
- else:
- return text
class currencies: