summaryrefslogtreecommitdiff
path: root/internal/config/client.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-09-06 13:48:55 +0300
committerPaul Buetow <paul@buetow.org>2021-09-06 13:48:55 +0300
commitcc89d3fb8be2465af276d7ef03ea2a8affd87b2e (patch)
tree7e14b1784a1e74fdf9a3914c5ab54a18dac8af86 /internal/config/client.go
parent2c1c70313bb03cf2b2d7e7afadb07a48ff6bb690 (diff)
Print out client/server update notice even from dtail server 4 to dtail
client 3.
Diffstat (limited to 'internal/config/client.go')
-rw-r--r--internal/config/client.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/config/client.go b/internal/config/client.go
index 837c7d6..8bde7a4 100644
--- a/internal/config/client.go
+++ b/internal/config/client.go
@@ -127,8 +127,8 @@ func newDefaultClientConfig() *ClientConfig {
HostnameBg: color.BgYellow,
HostnameFg: color.FgBlack,
TextAttr: color.AttrNone,
- TextBg: color.BgYellow,
- TextFg: color.FgBlack,
+ TextBg: color.BgBlack,
+ TextFg: color.FgWhite,
},
Server: serverTermColors{
DelimiterAttr: color.AttrDim,
@@ -151,9 +151,9 @@ func newDefaultClientConfig() *ClientConfig {
SeverityFatalAttr: color.AttrBlink,
SeverityFatalBg: color.BgRed,
SeverityFatalFg: color.FgWhite,
- SeverityWarnAttr: color.AttrNone,
+ SeverityWarnAttr: color.AttrBold,
SeverityWarnBg: color.BgBlack,
- SeverityWarnFg: color.FgRed,
+ SeverityWarnFg: color.FgWhite,
},
},
}