fix gray not displaying correctly on TTY

This commit is contained in:
hynak 2025-12-04 21:23:21 -05:00
commit 8944348444
2 changed files with 1 additions and 2 deletions

View file

@ -205,7 +205,7 @@ const rgb_color_16 = [16]u32{
Color.TRUE_DIM_MAGENTA,
Color.TRUE_DIM_CYAN,
Color.TRUE_DIM_WHITE,
Color.TRUE_GRAY,
Color.DEFAULT | Styling.BOLD,
Color.TRUE_RED | Styling.BOLD,
Color.TRUE_GREEN | Styling.BOLD,
Color.TRUE_YELLOW | Styling.BOLD,

View file

@ -38,7 +38,6 @@ pub const Color = struct {
pub const TRUE_MAGENTA = 0x00FF00FF;
pub const TRUE_CYAN = 0x0000FFFF;
pub const TRUE_WHITE = 0x00FFFFFF;
pub const TRUE_GRAY = 0x00808080;
pub const TRUE_DIM_RED = 0x00800000;
pub const TRUE_DIM_GREEN = 0x00008000;
pub const TRUE_DIM_YELLOW = 0x00808000;