use colory::{colory_init, BackgroundColor as bg};
pub fn main(){
colory_init().unwrap();
println!("Note: All these features may not not work as expected as your terminal may not support all ansi escape codes or may even not support ansi escape codes at all.\n");
println!("\
You can use colory to output different colors. This is the most basic example of using colory with the eight basic colors:\n\
{}This should be Yellow{}",
bg::Yellow, bg::Normal);
println!("\
Somethimes you want more than 8 colors. Colory also has options to choose from a 8 bit color pallete which contains 256 colors:\n\
{}This should be a purpleish color.{}",
bg::EightBit(91), bg::Normal);
println!("\
Heck! You want even more colors. Colory also has an RGB pallete which allows you to have 16777216 colors!:\n\
{}This should be a bluish color.{}",
bg::RGB(41, 21, 241), bg::Normal);
}