26PMSVO7LYQVRAKIWY575NGXPLOOUQWQMEMZUX6W3KRBI3WISOSAC }}const fn blend(a: Color, b: Color, a_ratio: f32) -> Color {debug_assert!(a_ratio >= 0.0);debug_assert!(a_ratio <= 1.0);let b_ratio = 1.0 - a_ratio;Color {r: a.r * a_ratio + b.r * b_ratio,g: a.g * a_ratio + b.g * b_ratio,b: a.b * a_ratio + b.b * b_ratio,a: a.a * a_ratio + b.a * b_ratio,