From b665595c0c1d6d79304f4701d4156bae2eff3cca Mon Sep 17 00:00:00 2001 From: Timo Paulssen Date: Wed, 17 Dec 2008 12:44:29 +0100 Subject: [PATCH] new, less "urgent" due graph colors. --- anki/graphs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anki/graphs.py b/anki/graphs.py index 5c0ecbf8e..662259f8c 100644 --- a/anki/graphs.py +++ b/anki/graphs.py @@ -110,11 +110,11 @@ where type = 1""") dl = [x for x in dayslist.items() if x[0] <= days] argl.extend(list(self.unzip(dl))) - self.filledGraph(graph, days, ["#f54949", "#c63434"], *argl) + self.filledGraph(graph, days, ["#f8835f", "#d57d56"], *argl) cheat = fig.add_subplot(111) - b1 = cheat.bar(0, 0, color = "#d33d3e") - b2 = cheat.bar(1, 0, color = "#a43635") + b1 = cheat.bar(0, 0, color = "#f8835f") + b2 = cheat.bar(1, 0, color = "#d57d56") cheat.legend([b1, b2], [ _("Young"),