Use other default colors and alphabetize color list

This commit is contained in:
Micah Jerome Ellison 2023-02-25 11:33:32 -08:00
parent 9a29ec122a
commit 347954ef14
2 changed files with 9 additions and 6 deletions

3
here.txt Normal file
View file

@ -0,0 +1,3 @@
[2023-02-25 11:32:42 AM] asdf
[2023-02-25 11:32:51 AM] and a @tag

View file

@ -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",
}