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, "linewrap": 79,
"indent_character": "|", "indent_character": "|",
"colors": { "colors": {
"date": "none",
"title": "none",
"body": "none", "body": "none",
"date": "none",
"tags": "none", "tags": "none",
"title": "none",
}, },
} }
def get_default_colors() -> dict[str, Any]: def get_default_colors() -> dict[str, Any]:
return { return {
"date": "none", "body": "none",
"title": "magenta", "date": "black",
"body": "yellow", "tags": "yellow",
"tags": "cyan", "title": "cyan",
} }