mirror of
https://github.com/esphome/esphome.git
synced 2024-11-07 09:31:10 +01:00
add gradient color V2.0 (#3709)
This commit is contained in:
parent
7f41b7cd93
commit
b918abfd54
@ -139,9 +139,19 @@ struct Color {
|
|||||||
return Color(uint8_t((uint16_t(r) * 255U / max_rgb)), uint8_t((uint16_t(g) * 255U / max_rgb)),
|
return Color(uint8_t((uint16_t(r) * 255U / max_rgb)), uint8_t((uint16_t(g) * 255U / max_rgb)),
|
||||||
uint8_t((uint16_t(b) * 255U / max_rgb)), w);
|
uint8_t((uint16_t(b) * 255U / max_rgb)), w);
|
||||||
}
|
}
|
||||||
Color fade_to_white(uint8_t amnt) { return Color(255, 255, 255, 255) - (*this * amnt); }
|
|
||||||
Color fade_to_black(uint8_t amnt) { return *this * amnt; }
|
Color gradient(const Color &to_color, uint8_t amnt) {
|
||||||
Color gradient(const Color &to_color, uint8_t amnt) { return (*this * amnt) + (to_color * (255 - amnt)); }
|
Color new_color;
|
||||||
|
float amnt_f = float(amnt) / 255.0f;
|
||||||
|
new_color.r = amnt_f * (to_color.r - (*this).r) + (*this).r;
|
||||||
|
new_color.g = amnt_f * (to_color.g - (*this).g) + (*this).g;
|
||||||
|
new_color.b = amnt_f * (to_color.b - (*this).b) + (*this).b;
|
||||||
|
new_color.w = amnt_f * (to_color.w - (*this).w) + (*this).w;
|
||||||
|
return new_color;
|
||||||
|
}
|
||||||
|
Color fade_to_white(uint8_t amnt) { return (*this).gradient(Color::WHITE, amnt); }
|
||||||
|
Color fade_to_black(uint8_t amnt) { return (*this).gradient(Color::BLACK, amnt); }
|
||||||
|
|
||||||
Color lighten(uint8_t delta) { return *this + delta; }
|
Color lighten(uint8_t delta) { return *this + delta; }
|
||||||
Color darken(uint8_t delta) { return *this - delta; }
|
Color darken(uint8_t delta) { return *this - delta; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user