diff options
author | Daniel Milde <daniel@milde.cz> | 2024-02-18 20:39:15 +0100 |
---|---|---|
committer | Daniel Milde <daniel@milde.cz> | 2024-02-18 20:39:15 +0100 |
commit | 4050b186b6bd502d10a9b4ac5be571565b648962 (patch) | |
tree | 1f1565b202d899a382b6cffe7a52d093698813db /tui/format.go | |
parent | ba089e58b07699cccaee274159b8322f5a5fcf70 (diff) |
fix: show black as real black
fixes #280
Diffstat (limited to 'tui/format.go')
-rw-r--r-- | tui/format.go | 2 |
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:-]" } |