Darker color

This commit is contained in:
CommanderRedYT
2022-01-01 17:13:16 +01:00
parent 0bd64fd40e
commit e2547867b3

View File

@ -49,7 +49,7 @@ public:
int color() const override
{
return (status == currentStatus || currentStatus == Idle) ? TFT_WHITE : TFT_DARKGREY;
return (status == currentStatus || currentStatus == Idle) ? TFT_WHITE : color565(50,50,50);
}
std::string text() const override