Add subtitle function

This commit is contained in:
Marley Rae 2024-01-30 19:49:07 -08:00
parent 4c3929e3c4
commit ef552867be

View file

@ -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