diff --git a/crates/tiler/src/nexrad.rs b/crates/tiler/src/nexrad.rs index 70ed230..8f60888 100644 --- a/crates/tiler/src/nexrad.rs +++ b/crates/tiler/src/nexrad.rs @@ -342,11 +342,7 @@ fn colorize( color.red, color.green, color.blue, - if color.red == 0 && color.green == 0 && color.blue == 0 { - 0 - } else { - 255 - }, + color.alpha, ]) } None => Rgba([0, 0, 0, 30]),