Thank you for your help.
I am a happy user of Cygwin and Mintty on Windows 7. But I always like to see what other options are. So I downloaded Console2 and ConEmu.
The first step is always, runinng bash. It was easy. Just typing 'bash' ... In the second step, set up the look. It was impossible!
As you can see in the following screenshot, it looks like ANSI colors are not supported, which I can expect from Console2 form, but without ConEmu form. Console order (top to bottom): Mintty (Cygwin), Console2, and ConEmu.

So, any ideas on what is going on?
I loaded Console2 months ago, and I think the colors worked fine. I have no idea why it now looks like powershell.
I really tried Powershell a few weeks ago and changed the colors a bit. Could this cause a mess in other terminals?
Luckily for me, Mintty is fine.
Thanks!
UPDATE:
Looks like the problem is on my command line!
It works great in Mintty, but he doesn't like Console2 and ConEmu.
# Custom Shell # Green 113 # Red 173 # Blue 81 # Yellow 186 # Light Green 194 # Light Blue 195 function EXT_COLOR () { echo -ne "\e[38;5;$1m"; } function CLOSE_COLOR () { echo -ne '\e[m'; } PS1=' `EXT_COLOR 81`\]\ u@ \h`CLOSE_COLOR`\] `EXT_COLOR 195`\]$PWD >`CLOSE_COLOR`\]`EXT_COLOR 173`\]$(__git_ps1 " (%s)")`CLOSE_COLOR`\]\n ' export LS_COLORS='di=38;5;108:fi=00:*svn-commit.tmp=31:ln=38;5;116:ex=38;5;186' echo -e "\e[38;5;194m$(date +%A\ %d\ %B\ %Y\ -\ %H:%M)\e[m"
source share