mirror of
https://github.com/makew0rld/amfora.git
synced 2025-01-03 14:56:27 -05:00
💄 Help text color matches regular text
This commit is contained in:
parent
53f6828379
commit
2951d16486
@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- Help text is now the same color as `regular_text` in the theme config
|
||||||
|
|
||||||
|
|
||||||
## [1.8.0] - 2021-02-17
|
## [1.8.0] - 2021-02-17
|
||||||
### Added
|
### Added
|
||||||
- **Media type handlers** - open non-text files in another application (#121, #134)
|
- **Media type handlers** - open non-text files in another application (#121, #134)
|
||||||
|
@ -61,6 +61,7 @@ func Help() {
|
|||||||
func helpInit() {
|
func helpInit() {
|
||||||
// Populate help table
|
// Populate help table
|
||||||
helpTable.SetBackgroundColor(config.GetColor("bg"))
|
helpTable.SetBackgroundColor(config.GetColor("bg"))
|
||||||
|
helpTable.SetTextColor(config.GetColor("regular_text"))
|
||||||
helpTable.SetPadding(0, 0, 1, 1)
|
helpTable.SetPadding(0, 0, 1, 1)
|
||||||
helpTable.SetDoneFunc(func(key tcell.Key) {
|
helpTable.SetDoneFunc(func(key tcell.Key) {
|
||||||
if key == tcell.KeyEsc || key == tcell.KeyEnter {
|
if key == tcell.KeyEsc || key == tcell.KeyEnter {
|
||||||
|
Loading…
Reference in New Issue
Block a user