Wrong Color of texts [SOLVED]
Posted: 06 Aug 2023 16:08
The
stipulates usage of such colors
But e.g. this script
shows me light yellow text on my background instead of purple on black. And by mine background I mean colors chosen by me at
Properties > Colors > Screen Background > Selected Colors Values
Properties > Colors > Popup Background > Selected Colors Values
for every CMD window I could had evoke - and which are now stored in the Registry at
I can for example use
to get [the darker] yellow [on also my background] but similar case is with the two reds:
will get me text in Light Red but i.e. the proper color, but
shows me apparently Black text
So what happens if I choose
?
i.e. the Black. My text is shown with colors chosen by me at
Properties > Colors > Screen Text > Selected Colors Values
Properties > Colors > Popup Text > Selected Colors Values
And what happens if I choose
i.d. the Light Yellow which is wrongly shown when I use
as reported by me at the beginning of this post? Well, then I get extra light / pale yellow. So either I am able to utilize 3 yellow colors instead of just 2 or I have correctly 2 yellow colors and 1 gold / light brown
So in overall: what Matrix tomfoolery is happening here?
Is it because at
Properties > Colors >
I did change the default values?
And how do I fix this?
I am using Windows 10 Enterprise 20H2 x64
Code: Select all
color /?
0 = Black
1 = Blue
2 = Green
3 = Aqua
4 = Red
5 = Purple
6 = Yellow
7 = White
8 = Gray
9 = Light Blue
A = Light Green
B = Light Aqua
C = Light Red
D = Light Purple
E = Light Yellow
F = Bright White
But e.g. this script
Code: Select all
@echo off
chcp 65001 >nul
color 05
echo. TEST
echo. ████
pause
Properties > Colors > Screen Background > Selected Colors Values
Properties > Colors > Popup Background > Selected Colors Values
for every CMD window I could had evoke - and which are now stored in the Registry at
Code: Select all
[HKEY_CURRENT_USER\Console]
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe]
[HKEY_CURRENT_USER\Console\%SystemRoot%_SysWOW64_cmd.exe]
[HKEY_USERS\S-1-5-21-3797103458-798797042-3558267449-1001\Console]
[HKEY_USERS\S-1-5-21-3797103458-798797042-3558267449-1001\Console\%SystemRoot%_system32_cmd.exe]
[HKEY_USERS\S-1-5-21-3797103458-798797042-3558267449-1001\Console\%SystemRoot%_SysWOW64_cmd.exe]
I can for example use
Code: Select all
color 06
Code: Select all
color 0c
Code: Select all
color 04
So what happens if I choose
Code: Select all
color 00
i.e. the Black. My text is shown with colors chosen by me at
Properties > Colors > Screen Text > Selected Colors Values
Properties > Colors > Popup Text > Selected Colors Values
And what happens if I choose
Code: Select all
color 0e
Code: Select all
color 05
So in overall: what Matrix tomfoolery is happening here?
Is it because at
Properties > Colors >
I did change the default values?
And how do I fix this?
I am using Windows 10 Enterprise 20H2 x64