aboutsummaryrefslogtreecommitdiff
path: root/utils/colored_output.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/colored_output.py')
-rw-r--r--utils/colored_output.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/colored_output.py b/utils/colored_output.py
new file mode 100644
index 0000000..e44c39d
--- /dev/null
+++ b/utils/colored_output.py
@@ -0,0 +1,21 @@
+import colorama
+
+
+def date_f(text: str) -> str:
+ """Format of the date."""
+ return text
+
+def comment_f(text: str) -> str:
+ """Format of the transaction's comment."""
+ return colorama.Style.BRIGHT + text + colorama.Style.RESET_ALL
+
+def account_f(text: str) -> str:
+ """Format of the account's name."""
+ return colorama.Fore.BLUE + text + colorama.Style.RESET_ALL
+
+def price_f(text: str) -> str:
+ """Format of the price."""
+ if '-' in text:
+ return colorama.Fore.RED + text + colorama.Style.RESET_ALL
+ else:
+ return text