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 committed by Leroy Hopson
parent b55f96cb70
commit 6a626905d6
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] ## [Unreleased]
### Fixed
- Use "Light Cyan" color from theme. Previously ignored.
## [v1.2.1] - 2020-11-23 ## [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_YELLOW, "Light Yellow");
set_pallete_color(TSM_COLOR_LIGHT_BLUE, "Light Blue"); set_pallete_color(TSM_COLOR_LIGHT_BLUE, "Light Blue");
set_pallete_color(TSM_COLOR_LIGHT_MAGENTA, "Light Magenta"); 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_WHITE, "White");
set_pallete_color(TSM_COLOR_BACKGROUND, "Background"); set_pallete_color(TSM_COLOR_BACKGROUND, "Background");