stream_color: Try a different color mix for recipient bar color.

This commit is contained in:
Aman Agrawal
2023-04-24 19:21:24 +00:00
committed by Tim Abbott
parent 63e31a6de4
commit defd1c30df

View File

@@ -48,7 +48,7 @@ export function get_recipient_bar_color(color) {
const using_dark_theme = settings_data.using_dark_theme();
color = get_stream_privacy_icon_color(color);
return colord(using_dark_theme ? "#000000" : "#ffffff")
.mix(color, using_dark_theme ? 0.5 : 0.4)
.mix(color, using_dark_theme ? 0.43 : 0.35)
.toHex();
}