summaryrefslogtreecommitdiff
path: root/entry.py
diff options
context:
space:
mode:
Diffstat (limited to 'entry.py')
-rw-r--r--entry.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/entry.py b/entry.py
index 67d290a..0a0b3b1 100644
--- a/entry.py
+++ b/entry.py
@@ -42,7 +42,7 @@ class Entry:
body.setText("{0}/{1}/{2}: ".format(self.due.month(), self.due.day(), self.due.year()))
if self.link:
body.setOpenExternalLinks(True)
- body.setText(body.text() + "<a href=\"{0}\" style=\"color: default; text-decoration: none;\">".format(self.link))
+ body.setText(body.text() + "<a href=\"{0}\" style=\"color: {1}; text-decoration: none;\">".format(self.link, self.color if self.color else "default"))
body.setText(body.text() + self.desc)
if self.link:
body.setText(body.text() + "</a>")
@@ -67,7 +67,7 @@ class Entry:
color: {0};
background-color: {1};
}}""".format(
- self.color if self.color else "black",
+ self.color if self.color else "default",
self.highlight if self.highlight else "none"
))