From 347954ef14b6ef177bd43f422447c39368270071 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 25 Feb 2023 11:33:32 -0800 Subject: [PATCH] Use other default colors and alphabetize color list --- here.txt | 3 +++ jrnl/config.py | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 here.txt diff --git a/here.txt b/here.txt new file mode 100644 index 00000000..794818ac --- /dev/null +++ b/here.txt @@ -0,0 +1,3 @@ +[2023-02-25 11:32:42 AM] asdf + +[2023-02-25 11:32:51 AM] and a @tag diff --git a/jrnl/config.py b/jrnl/config.py index 036c75b4..bc10b86b 100644 --- a/jrnl/config.py +++ b/jrnl/config.py @@ -107,20 +107,20 @@ def get_default_config() -> dict[str, Any]: "linewrap": 79, "indent_character": "|", "colors": { - "date": "none", - "title": "none", "body": "none", + "date": "none", "tags": "none", + "title": "none", }, } def get_default_colors() -> dict[str, Any]: return { - "date": "none", - "title": "magenta", - "body": "yellow", - "tags": "cyan", + "body": "none", + "date": "black", + "tags": "yellow", + "title": "cyan", }