**System Information**
version: 2.91.2, branch: master, commit date: 2021-01-19 16:15, hash: 5be9ef417703, type: Release
build date: 2021-01-19, 16:25:50
and history versions, at least from Blender 2.80
platform: Windows
**Short description of error**
Python Console use so-called "OUTPUT" color style for its banner info, which arouse great ambiguity between with real "OUTPUT" scrollback messages.
**Exact steps for others to reproduce the error**
step 1. Open a Python Console, then banner info is displayed.
step 2. Send some output message to Python Console.
{F9825044}
Suggestion:
Change banner style from "OUTPUT" to "INFO".
File: "..\scripts\modules\console_python.py"
```
for line in message:
#rv- add_scrollback(line, 'OUTPUT')
add_scrollback(line, 'INFO') #rv+
```
{F9825056}