basic feature set

This commit is contained in:
aaron-jack-manning
2022-08-20 14:01:43 +10:00
commit ef7103043c
11 changed files with 1456 additions and 0 deletions

31
src/colour.rs Normal file
View 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()
}