diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-05 09:03:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-05 12:03:03 +0300 |
commit | 9e71002e40d5487c6fa2571a3a3c4f5c8f679334 (patch) | |
tree | 4704bcd1029b0b236967e1ffc8be49e36a235440 /CHANGELOG.md | |
parent | de9ed259667588285891eda1665cd3edefcd3297 (diff) | |
download | alacritty-9e71002e40d5487c6fa2571a3a3c4f5c8f679334.tar.gz alacritty-9e71002e40d5487c6fa2571a3a3c4f5c8f679334.zip |
Fix dimming of indexed colors
It seems like the list of colors might have changed a bit, leading to
indexed colors not being transformed into their dim colors correctly.
To prevent this from happening in the future, the dimming for colors in
the range '0..=7' is now performed by offsetting them from the
'NamedColor::DimBlack'. Since this is the first dimmed color, this
should always work as long as all dimmed colors are added in the correct
order.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index cd4f43e6..34dde984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Wide characters sometimes being cut off - Preserve vi mode across terminal `reset` - Escapes `CSI Ps b` and `CSI Ps Z` with large parameters locking up Alacritty +- Dimming colors which use the indexed `CSI 38 : 5 : Ps m` notation ### Removed |