diff --git a/tui/format.go b/tui/format.go index efc683de9..c0913e556 100644 --- a/tui/format.go +++ b/tui/format.go @@ -83,7 +83,7 @@ func (ui *UI) formatSize(size int64, reverseColor bool, transparentBg bool) stri var color string if reverseColor { if ui.UseColors { - color = "[black:#2479d0:-]" + color = "[#000000:#2479d0:-]" } else { color = "[black:white:-]" } diff --git a/tui/show.go b/tui/show.go index 0038bd674..bff6d5050 100644 --- a/tui/show.go +++ b/tui/show.go @@ -128,7 +128,7 @@ func (ui *UI) showDir() { var footerNumberColor, footerTextColor string if ui.UseColors { footerNumberColor = "[#ffffff:#2479d0:b]" - footerTextColor = "[black:#2479d0:-]" + footerTextColor = "[#000000:#2479d0:-]" } else { footerNumberColor = "[black:white:b]" footerTextColor = "[black:white:-]" @@ -141,7 +141,7 @@ func (ui *UI) showDir() { } ui.footerLabel.SetText( - selected + + selected + footerTextColor + " Total disk usage: " + footerNumberColor + ui.formatSize(totalUsage, true, false) + @@ -195,7 +195,7 @@ func (ui *UI) showDevices() { var footerNumberColor, footerTextColor string if ui.UseColors { footerNumberColor = "[#ffffff:#2479d0:b]" - footerTextColor = "[black:#2479d0:-]" + footerTextColor = "[#000000:#2479d0:-]" } else { footerNumberColor = "[black:white:b]" footerTextColor = "[black:white:-]"