mirror of
https://codeberg.org/fairyglade/ly.git
synced 2026-08-09 15:19:13 +02:00
fix gray not displaying correctly on TTY
This commit is contained in:
parent
47134d1671
commit
8944348444
2 changed files with 1 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue