I changed the colors of the powershell and now I can\'t change the color of the input text, is always yellow.
I changed the color of the background and
I found this worked. It's the answer from user 577111 I think. We need to put all this into PS.
Set-PSReadLineOption -Colors @{ ### Use a ConsoleColor enum "Error" = [ConsoleColor]::DarkRed ### 24 bit color escape sequence "String" = "$([char]0x1b)[38;5;100m" ### RGB value "Command" = "#8181f7" }