diff --git a/examples/simple.rs b/examples/simple.rs index 93ef1df..86c4603 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -31,7 +31,7 @@ fn main() { // Clear the screen b'c' => write!(stdout, "{}", termion::clear::All), // Set red color - b'r' => write!(stdout, "{}", color::Fg(color::Rgb(5, 0, 0))), + b'r' => write!(stdout, "{}", color::Fg(color::Rgb(255, 0, 0))), // Write it to stdout. a => write!(stdout, "{}", a), }