From ff1aec406b28fc8057cbafa108112bf9bb224acd Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Sat, 25 Apr 2015 23:06:41 +0200 Subject: [PATCH] Changed pt to orange After feedback, and also noticing myself, the blue requires a little more focus than should be nessesarry. I have updated to be orange, which feels more comfortable. I have polled the community and they also agree orange > blue. --- cockatrice/src/carditem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/carditem.cpp b/cockatrice/src/carditem.cpp index 2c7d770d..43d24dcd 100644 --- a/cockatrice/src/carditem.cpp +++ b/cockatrice/src/carditem.cpp @@ -111,7 +111,7 @@ void CardItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QStringList ptSplit = pt.split("/"); if (ptDbSplit.at(0) != ptSplit.at(0) || ptDbSplit.at(1) != ptSplit.at(1)) - painter->setPen(QColor(0, 195, 255)); + painter->setPen(QColor(255, 150, 0)); else painter->setPen(Qt::white); painter->setBackground(Qt::black);