Adjust reduce red component of LCD color

This commit is contained in:
June Tate-Gans 2023-10-31 11:16:17 -05:00
parent 50aa9bd115
commit ac7eaae41f

View File

@ -106,7 +106,7 @@ class DeviceManager(threading.Thread, Observer):
def _updateLcdColor(self):
lcdColor = self._prefs.selectedProfile().lcdColor
lcdColor = [int(x * 255) for x in lcdColor]
lcdColor = [lcdColor[0] * 190, lcdColor[1] * 255, lcdColor[2] * 255]
self.setBacklightColor(*lcdColor)
@property