summaryrefslogtreecommitdiffstats
path: root/tui/format.go
diff options
context:
space:
mode:
authorDaniel Milde <daniel@milde.cz>2024-02-18 20:39:15 +0100
committerDaniel Milde <daniel@milde.cz>2024-02-18 20:39:15 +0100
commit4050b186b6bd502d10a9b4ac5be571565b648962 (patch)
tree1f1565b202d899a382b6cffe7a52d093698813db /tui/format.go
parentba089e58b07699cccaee274159b8322f5a5fcf70 (diff)
fix: show black as real black
fixes #280
Diffstat (limited to 'tui/format.go')
-rw-r--r--tui/format.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tui/format.go b/tui/format.go
index efc683d..c0913e5 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:-]"
}