basic feature set
This commit is contained in:
31
src/colour.rs
Normal file
31
src/colour.rs
Normal file
@@ -0,0 +1,31 @@
|
||||
use colored::Colorize;
|
||||
|
||||
// Yellow
|
||||
pub fn vault(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(243, 156, 18).bold()
|
||||
}
|
||||
|
||||
// Red
|
||||
pub fn error(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(192, 57, 43).bold()
|
||||
}
|
||||
|
||||
// Purple
|
||||
pub fn command(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(155, 89, 182).bold()
|
||||
}
|
||||
|
||||
// Green
|
||||
pub fn task_name(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(39, 174, 96).bold()
|
||||
}
|
||||
|
||||
// Beige
|
||||
pub fn file(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(255, 184, 184).bold()
|
||||
}
|
||||
|
||||
// Pink
|
||||
pub fn id(text : &str) -> colored::ColoredString {
|
||||
text.truecolor(232, 67, 147).bold()
|
||||
}
|
||||
Reference in New Issue
Block a user