mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-14 17:58:40 -09:00
Fix text color contrast in dark/dark-bg mode
This commit is contained in:
parent
1b3d0a670e
commit
edc8bde9bf
1 changed files with 2 additions and 2 deletions
|
|
@ -259,8 +259,8 @@ const styles = [_]StyleDef{
|
||||||
.darkbg = .{ .fg = c.COLOR_BLUE, .bg = c.COLOR_BLACK, .attr = c.A_BOLD } },
|
.darkbg = .{ .fg = c.COLOR_BLUE, .bg = c.COLOR_BLACK, .attr = c.A_BOLD } },
|
||||||
.{ .name = "dir_sel",
|
.{ .name = "dir_sel",
|
||||||
.off = .{ .fg = -1, .bg = -1, .attr = c.A_REVERSE },
|
.off = .{ .fg = -1, .bg = -1, .attr = c.A_REVERSE },
|
||||||
.dark = .{ .fg = c.COLOR_BLUE, .bg = c.COLOR_GREEN, .attr = c.A_BOLD },
|
.dark = .{ .fg = c.COLOR_WHITE, .bg = c.COLOR_GREEN, .attr = c.A_BOLD },
|
||||||
.darkbg = .{ .fg = c.COLOR_BLUE, .bg = c.COLOR_GREEN, .attr = c.A_BOLD } },
|
.darkbg = .{ .fg = c.COLOR_WHITE, .bg = c.COLOR_GREEN, .attr = c.A_BOLD } },
|
||||||
.{ .name = "flag",
|
.{ .name = "flag",
|
||||||
.off = .{ .fg = -1, .bg = -1, .attr = 0 },
|
.off = .{ .fg = -1, .bg = -1, .attr = 0 },
|
||||||
.dark = .{ .fg = c.COLOR_RED, .bg = -1, .attr = 0 },
|
.dark = .{ .fg = c.COLOR_RED, .bg = -1, .attr = 0 },
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue