diff --git a/src/dropdown.go b/src/dropdown.go index 00c4190..575eace 100644 --- a/src/dropdown.go +++ b/src/dropdown.go @@ -50,13 +50,13 @@ func ClearDropdowns() { } func drawDropdowns(window *Window) { - dropdownStyle := tcell.StyleDefault.Foreground(tcell.ColorBlack).Background(tcell.ColorWhite) + dropdownStyle := tcell.StyleDefault.Foreground(tcell.ColorWhite).Background(tcell.Color236) for _, d := range dropdowns { drawBox(window.screen, d.PosX, d.PosY, d.PosX+d.Width+1, d.PosY+len(d.Options)+1, dropdownStyle) line := d.PosY for i, option := range d.Options { if d.Selected == i { - drawText(window.screen, d.PosX+1, d.PosY+line, d.PosX+d.Width+1, d.PosY+line, dropdownStyle.Background(tcell.Color250), option) + drawText(window.screen, d.PosX+1, d.PosY+line, d.PosX+d.Width+1, d.PosY+line, dropdownStyle.Background(tcell.Color240), option) } else { drawText(window.screen, d.PosX+1, d.PosY+line, d.PosX+d.Width+1, d.PosY+line, dropdownStyle, option) } diff --git a/src/input_bar.go b/src/input_bar.go index d0a9653..31a4e39 100644 --- a/src/input_bar.go +++ b/src/input_bar.go @@ -41,7 +41,7 @@ func drawInputBar(window *Window) { screen := window.screen - inputBarStyle := tcell.StyleDefault.Foreground(tcell.ColorBlack).Background(tcell.ColorWhite) + inputBarStyle := tcell.StyleDefault.Foreground(tcell.ColorWhite).Background(tcell.Color236) sizeX, sizeY := screen.Size() diff --git a/src/line_index.go b/src/line_index.go index bb5a81d..054df00 100644 --- a/src/line_index.go +++ b/src/line_index.go @@ -10,7 +10,7 @@ func drawLineIndex(window *Window) { screen := window.screen buffer := window.textArea.CurrentBuffer - lineIndexStyle := tcell.StyleDefault.Foreground(tcell.ColorDimGray).Background(tcell.Color236) + lineIndexStyle := tcell.StyleDefault.Foreground(tcell.ColorDimGray).Background(tcell.Color237) _, sizeY := screen.Size() diff --git a/src/message_bar.go b/src/message_bar.go index 944087d..7f9bba0 100644 --- a/src/message_bar.go +++ b/src/message_bar.go @@ -33,7 +33,7 @@ func PrintMessage(window *Window, message string) { func drawMessageBar(window *Window) { screen := window.screen - messageBarStyle := tcell.StyleDefault.Foreground(tcell.ColorBlack).Background(tcell.ColorWhite) + messageBarStyle := tcell.StyleDefault.Foreground(tcell.ColorWhite).Background(tcell.Color236) sizeX, sizeY := screen.Size() diff --git a/src/top_menu.go b/src/top_menu.go index c4c45b4..23ebd6f 100644 --- a/src/top_menu.go +++ b/src/top_menu.go @@ -160,7 +160,7 @@ func initTopMenu() { func drawTopMenu(window *Window) { screen := window.screen - topMenuStyle := tcell.StyleDefault.Foreground(tcell.ColorBlack).Background(tcell.ColorWhite) + topMenuStyle := tcell.StyleDefault.Foreground(tcell.ColorWhite).Background(tcell.Color236) sizeX, _ := screen.Size()