Hello, I would like to make a suggestion for improving the customization of themes.
It would be interesting to be able to change the color of the texts and change the background according to the temperature, something like the Smart configuration of some RGB/ARGB software.
Example 1: if the temperature is <= 50° the text turns blue and the background image is a "block of ice", if the temperature => 51° the text turns yellow and the image changes to a "block of ice melting ".
Example 2:
sensorTemperature = (motherboard sensor temperature)
textColor = (text/font color)
background = (background image)
value_1 = (user defined value)
color_1 = (user defined color)
backgroud_1 = (user defined image)
value_2 = (user defined value)
color_2 = (user defined color)
backgroud_2 = (user defined image)
color_3 = (user defined color)
backgroud_3 = (user defined image)
if sensorTemperature <= value_1 { textColor == color_1; background == backgroud_1; }
if sensorTemperature > value_1 && <= value_2 { textColor == color_2; background == backgroud_2; }
if sensorTemperature > value_2 { textColor == color_3; background == backgroud_3; }
This is just a simplified (and not practical) example to better demonstrate my suggestion.