✨ Add subtitle function
This commit is contained in:
parent
4c3929e3c4
commit
ef552867be
1 changed files with 13 additions and 5 deletions
|
@ -21,12 +21,20 @@ function print_in_green -a text
|
|||
print_in_color $text 2
|
||||
end
|
||||
|
||||
function print_in_cyan -a text
|
||||
print_in_color $text 6
|
||||
end
|
||||
|
||||
function print_in_purple -a text
|
||||
print_in_color $text 5
|
||||
end
|
||||
|
||||
function print_title -a text
|
||||
print_in_purple "\n • $text\n\n"
|
||||
print_in_purple "\n $text\n\n"
|
||||
end
|
||||
|
||||
function print_subtitle -a text
|
||||
print_in_cyan " $text\n"
|
||||
end
|
||||
|
||||
function print_success -a text
|
||||
|
|
Loading…
Reference in a new issue