Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
asherkin committed Feb 27, 2021
1 parent f19b29d commit 1dae0aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/flamegraph/color/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,11 @@ fn rgb_components_for_palette(palette: Palette, name: &str, v1: f32, v2: f32, v3
}
BasicPalette::Aqua => color!(t!(50, 60_f32, v1), t!(165, 55_f32, v1), t!(165, 55_f32, v1)),
BasicPalette::Orange => color!(t!(190, 65_f32, v1), t!(90, 65_f32, v1), t!(0, 0_f32, v1)),
BasicPalette::Gray => color!(t!(190, 40_f32, v1), t!(190, 40_f32, v1), t!(190, 40_f32, v1)),
BasicPalette::Gray => color!(
t!(190, 40_f32, v1),
t!(190, 40_f32, v1),
t!(190, 40_f32, v1),
),
}
}

Expand Down

0 comments on commit 1dae0aa

Please sign in to comment.