mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
Use "Light Cyan" color from theme
Previously this color was ignored.
This commit is contained in:
parent
b55f96cb70
commit
6a626905d6
2 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue