<?phpnamespaceLaravel\Prompts\Concerns;
traitColors{
/**
* Reset all colors and styles.
*/publicfunctionreset(string$text): string{
return"\e[0m{$text}\e[0m";
}
/**
* Make the text bold.
*/publicfunctionbold(string$text): string{
return"\e[1m{$text}\e[22m";
}
/**
* Make the text dim.
*/publicfunctiondim(string$text): string{
return"\e[2m{$text}\e[22m";
}
/**
* Make the text italic.
*/publicfunctionitalic(string$text): string{
return"\e[3m{$text}\e[23m";
}
/**
* Underline the text.
*/publicfunctionunderline(string$text): string{
return"\e[4m{$text}\e[24m";
}
/**
* Invert the text and background colors.
*/publicfunctioninverse(string$text): string{
return"\e[7m{$text}\e[27m";
}
/**
* Hide the text.
*/publicfunctionhidden(string$text): string{
return"\e[8m{$text}\e[28m";
}
/**
* Strike through the text.
*/publicfunctionstrikethrough(string$text): string{
return"\e[9m{$text}\e[29m";
}
/**
* Set the text color to black.
*/publicfunctionblack(string$text): string{
return"\e[30m{$text}\e[39m";
}
/**
* Set the text color to red.
*/publicfunctionred(string$text): string{
return"\e[31m{$text}\e[39m";
}
/**
* Set the text color to green.
*/publicfunctiongreen(string$text): string{
return"\e[32m{$text}\e[39m";
}
/**
* Set the text color to yellow.
*/publicfunctionyellow(string$text): string{
return"\e[33m{$text}\e[39m";
}
/**
* Set the text color to blue.
*/publicfunctionblue(string$text): string{
return"\e[34m{$text}\e[39m";
}
/**
* Set the text color to magenta.
*/publicfunctionmagenta(string$text): string{
return"\e[35m{$text}\e[39m";
}
/**
* Set the text color to cyan.
*/publicfunctioncyan(string$text): string{
return"\e[36m{$text}\e[39m";
}
/**
* Set the text color to white.
*/publicfunctionwhite(string$text): string{
return"\e[37m{$text}\e[39m";
}
/**
* Set the text background to black.
*/publicfunctionbgBlack(string$text): string{
return"\e[40m{$text}\e[49m";
}
/**
* Set the text background to red.
*/publicfunctionbgRed(string$text): string{
return"\e[41m{$text}\e[49m";
}
/**
* Set the text background to green.
*/publicfunctionbgGreen(string$text): string{
return"\e[42m{$text}\e[49m";
}
/**
* Set the text background to yellow.
*/publicfunctionbgYellow(string$text): string{
return"\e[43m{$text}\e[49m";
}
/**
* Set the text background to blue.
*/publicfunctionbgBlue(string$text): string{
return"\e[44m{$text}\e[49m";
}
/**
* Set the text background to magenta.
*/publicfunctionbgMagenta(string$text): string{
return"\e[45m{$text}\e[49m";
}
/**
* Set the text background to cyan.
*/publicfunctionbgCyan(string$text): string{
return"\e[46m{$text}\e[49m";
}
/**
* Set the text background to white.
*/publicfunctionbgWhite(string$text): string{
return"\e[47m{$text}\e[49m";
}
/**
* Set the text color to gray.
*/publicfunctiongray(string$text): string{
return"\e[90m{$text}\e[39m";
}
}