diff options
| author | Paul Buetow <paul@buetow.org> | 2021-08-11 09:32:13 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-08-11 09:32:13 +0300 |
| commit | 9bb96433be61d89f8e86f6f9ded8e35f74156a63 (patch) | |
| tree | cdbcc63433955bcde584c232d3676a78b3c52ee5 /internal/config | |
| parent | f3e08046badcbc852a6875b5553ee0a648021552 (diff) | |
add colorTable option
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/client.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/config/client.go b/internal/config/client.go index 84ad037..5386576 100644 --- a/internal/config/client.go +++ b/internal/config/client.go @@ -75,7 +75,7 @@ func newDefaultClientConfig() *ClientConfig { RemoteDebugAttr: color.AttrNone, RemoteDebugBg: color.BgGreen, - RemoteDebugFg: color.FgWhite, + RemoteDebugFg: color.FgBlack, RemoteErrorAttr: color.AttrBold, RemoteErrorBg: color.BgRed, @@ -83,11 +83,11 @@ func newDefaultClientConfig() *ClientConfig { RemoteFatalAttr: color.AttrBlink, RemoteFatalBg: color.BgRed, - RemoteFatalFg: color.FgBlue, + RemoteFatalFg: color.FgWhite, RemoteStatsOkAttr: color.AttrNone, RemoteStatsOkBg: color.BgGreen, - RemoteStatsOkFg: color.FgWhite, + RemoteStatsOkFg: color.FgBlack, RemoteStatsWarnAttr: color.AttrNone, RemoteStatsWarnBg: color.BgRed, |
