From 9a29ec122a758bf27f0b6ac917e2d9e2060ee979 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Wed, 22 Feb 2023 10:15:33 -0800 Subject: [PATCH] Use magenta instead of black for default date color --- jrnl/config.py | 2 +- tests/bdd/features/install.feature | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jrnl/config.py b/jrnl/config.py index 8b7c16c4..036c75b4 100644 --- a/jrnl/config.py +++ b/jrnl/config.py @@ -118,7 +118,7 @@ def get_default_config() -> dict[str, Any]: def get_default_colors() -> dict[str, Any]: return { "date": "none", - "title": "black", + "title": "magenta", "body": "yellow", "tags": "cyan", } diff --git a/tests/bdd/features/install.feature b/tests/bdd/features/install.feature index 7f9e71b9..6462eee0 100644 --- a/tests/bdd/features/install.feature +++ b/tests/bdd/features/install.feature @@ -57,7 +57,7 @@ Feature: Installing jrnl And the config should contain colors: date: none - title: black + title: magenta body: yellow tags: cyan