Current Color Formatting: (even harder to read as changing the Highlighting of Disabled Services to a lighter color)
https://imgur.com/9lKGqHR
After: (a lot more readable)
https://imgur.com/ThCXeZL
Code change: In srvlist.c...
replace:
Code: Select all
else if (PhCsUseColorServiceDisabled && serviceItem->State == SERVICE_STOPPED && serviceItem->StartType == SERVICE_DISABLED)
{
getNodeColor->BackColor = PhCsColorServiceDisabled;
getNodeColor->Flags |= TN_AUTO_FORECOLOR;
}
With
Code: Select all
else if (PhCsUseColorServiceDisabled && serviceItem->State == SERVICE_STOPPED && serviceItem->StartType == SERVICE_DISABLED)
{
getNodeColor->ForeColor = RGB(140, 15, 5); // Dark red. via: google.com/search?q=hex+color
}