Use "Light Cyan" color from theme

Previously this color was ignored.
This commit is contained in:
Leroy Hopson 2020-11-29 11:48:18 +07:00
parent b55f96cb70
commit f9e800568f
No known key found for this signature in database
GPG key ID: 4D05A4F6CB4E7DEE
2 changed files with 3 additions and 0 deletions

View file

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Fixed
- Use "Light Cyan" color from theme. Previously ignored.
## [v1.2.1] - 2020-11-23

View file

@ -393,6 +393,7 @@ void Terminal::update_color_palette()
set_pallete_color(TSM_COLOR_LIGHT_YELLOW, "Light Yellow");
set_pallete_color(TSM_COLOR_LIGHT_BLUE, "Light Blue");
set_pallete_color(TSM_COLOR_LIGHT_MAGENTA, "Light Magenta");
set_pallete_color(TSM_COLOR_LIGHT_CYAN, "Light Cyan");
set_pallete_color(TSM_COLOR_WHITE, "White");
set_pallete_color(TSM_COLOR_BACKGROUND, "Background");