pub struct SetColors(pub Colors);
Expand description
A command that optionally sets the foreground and/or background color.
For example:
use std::io::{stdout, Write};
use crossterm::execute;
use crossterm::style::{Color::{Green, Black}, Colors, Print, SetColors};
execute!(
stdout(),
SetColors(Colors::new(Green, Black)),
Print("Hello, world!".to_string()),
).unwrap();
See Colors
for more info.
Notes
Commands must be executed/queued for execution otherwise they do nothing.
Tuple Fields§
§0: Colors
Trait Implementations§
source§impl Command for SetColors
impl Command for SetColors
source§fn write_ansi(&self, f: &mut impl Write) -> Result
fn write_ansi(&self, f: &mut impl Write) -> Result
Write an ANSI representation of this command to the given writer.
An ANSI code can manipulate the terminal by writing it to the terminal buffer.
However, only Windows 10 and UNIX systems support this. Read more
source§fn is_ansi_code_supported(&self) -> bool
fn is_ansi_code_supported(&self) -> bool
Returns whether the ANSI code representation of this command is supported by windows. Read more