summaryrefslogtreecommitdiff
path: root/client/buffer
diff options
context:
space:
mode:
Diffstat (limited to 'client/buffer')
-rw-r--r--client/buffer/buffer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/buffer/buffer.go b/client/buffer/buffer.go
index 99d4ef2..9750932 100644
--- a/client/buffer/buffer.go
+++ b/client/buffer/buffer.go
@@ -96,7 +96,7 @@ func (b *Buffer) AtTop() bool {
func (b *Buffer) Show(id string) (atTop bool) {
tui.Push(id, tui.Box {
Width: tui.Fill, Height: tui.Fill, Dir: tui.Up, Overflow: true,
- Scroll: &b.scroll,
+ Style: &tui.Style {Fg: tui.White, Bg: 232}, Scroll: &b.scroll,
})
defer tui.Pop()