Set forground and background in one call
Created by: H4kor
Utility struct to set foreground and background color in one call.
Example:
println!("{}BlueOnRed", color::FBg(color::Blue, color::Red));
instead of
println!("{}{}Blue", color::Fg(color::Blue), color::Bg(color::Red));