Skip to content

Commit

Permalink
Update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jypelle committed Nov 9, 2019
1 parent 0ae555a commit 0d923eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/ui/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ var ColorHelpTextStr = "#000000"
func init() {
tview.Styles = tview.Theme{
PrimitiveBackgroundColor: tcell.ColorBlack,
ContrastBackgroundColor: ColorSelected,
ContrastBackgroundColor: tcell.NewHexColor(0x403030),
MoreContrastBackgroundColor: tcell.ColorGreen,
BorderColor: tcell.NewHexColor(0x808080),
TitleColor: tcell.ColorWhite,
GraphicsColor: tcell.ColorWhite,
PrimaryTextColor: tcell.ColorWhite,
SecondaryTextColor: tcell.ColorYellow,
SecondaryTextColor: tcell.NewHexColor(0xFF6040),
TertiaryTextColor: tcell.ColorGreen,
InverseTextColor: tcell.ColorBlue,
ContrastSecondaryTextColor: tcell.ColorDarkCyan,
Expand Down
3 changes: 3 additions & 0 deletions cli/ui/libraryComponent.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ func NewLibraryComponent(uiApp *UIApp) *LibraryComponent {
c.nameFilterInputField = tview.NewInputField().
SetLabel("Filter: ").
SetText("")

// c.nameFilterInputField.SetBackgroundColor(tcell.NewHexColor(0x1111C0))
// c.nameFilterInputField.SetFieldBackgroundColor(tcell.NewHexColor(0x3333C0))
c.nameFilterInputField.SetDoneFunc(
func(key tcell.Key) {
c.uiApp.tviewApp.SetFocus(uiApp.libraryComponent)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ var (
AppVersion = restApiV1.Version{
MajorNumber: 0,
MinorNumber: 2,
PatchNumber: 1,
PatchNumber: 2,
}
)

0 comments on commit 0d923eb

Please sign in to comment.