Push colors towards blue instead of green.

This commit is contained in:
Juergen Stuber 2018-12-28 14:47:36 +01:00
parent 92eac483d1
commit 67368db0e4
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ fn main() -> std::io::Result<()> {
let t_frame = 0.040; // s
let delay = Duration::new(0, (1_000_000_000.0 * t_frame) as u32);
let c0 = Color::new(0, 160, 95);
let c1 = Color::new(0, 138, 170);
let c0 = Color::new(0, 138, 170);
let c1 = Color::new(0, 160, 95);
let mut rng = thread_rng();