You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The _COLOR_BRIGHT flag should be separated into _COLOR_FGBRIGHT and _COLOR_BGBRIGHT to allow accessing the upper 8 colors in ANSI mode. Particularly this allows access to bright and bold colors.
Currently it's possible to trick the existing code into giving bright and bold colors by requesting inverse bright bold <background> on <foreground> but this is really quite ugly.
The text was updated successfully, but these errors were encountered:
The
_COLOR_BRIGHT
flag should be separated into_COLOR_FGBRIGHT
and_COLOR_BGBRIGHT
to allow accessing the upper 8 colors in ANSI mode. Particularly this allows access to bright and bold colors.The output coding currently as:
libshared/src/Color.cpp
Line 487 in ba9b76d
Currently it's possible to trick the existing code into giving bright and bold colors by requesting
inverse bright bold <background> on <foreground>
but this is really quite ugly.The text was updated successfully, but these errors were encountered: