tweak temporary palette

This commit is contained in:
TerraMaster85 2024-10-24 22:24:48 -04:00
parent d07f3485fc
commit 4df7ac4724
1 changed files with 2 additions and 3 deletions

View File

@ -31,9 +31,8 @@ pub fn create_test_palette() -> Palette {
out.push((r!(f64::NEG_INFINITY, 10.0), (c!(164, 164, 255), c!(164, 164, 255))));
out.push((r!(10.0, 20.0), (c!(64, 128, 255, 128), c!(32, 64, 128, 192))));
out.push((r!(20.0, 30.0), (c!(0, 255, 0, 192), c!(0, 128, 0, 192))));
out.push((r!(30.0, 40.0), (c!(255, 255, 0, 192), c!(255, 128, 0, 192))));
out.push((r!(40.0, 50.0), (c!(255, 255, 0, 192), c!(255, 128, 0, 192))));
out.push((r!(50.0, 60.0), (c!(255, 0, 0, 192), c!(160, 0, 0, 192))));
out.push((r!(30.0, 45.0), (c!(255, 255, 0, 192), c!(255, 128, 0, 192))));
out.push((r!(45.0, 60.0), (c!(255, 0, 0, 192), c!(160, 0, 0, 192))));
out.push((r!(60.0, 70.0), (c!(255, 0, 255, 192), c!(128, 0, 128, 192))));
out.push((r!(70.0, 80.0), (c!(255, 255, 255, 192), c!(128, 128, 128, 192))));
out.push((r!(80.0, f64::INFINITY), (c!(128, 128, 128, 192), c!(128, 128, 128, 192))));