summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-09-18 11:57:09 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 12:26:29 +0300
commit5e717af91e8012c72ec7dc0204420dea46f187db (patch)
tree987a174d8f97ae4e2b9803f7a69e0bb60b5eae0c /internal/config
parent2ebe7e9d63ba62c6f19749c39fe0a577d86ca775 (diff)
new docker test cases - also change default FATAL bg color to magenta
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/client.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/client.go b/internal/config/client.go
index 795c4a4..152ab15 100644
--- a/internal/config/client.go
+++ b/internal/config/client.go
@@ -169,8 +169,8 @@ func newDefaultClientConfig() *ClientConfig {
SeverityErrorAttr: color.AttrBold,
SeverityErrorBg: color.BgRed,
SeverityErrorFg: color.FgWhite,
- SeverityFatalAttr: color.AttrBlink,
- SeverityFatalBg: color.BgRed,
+ SeverityFatalAttr: color.AttrBold,
+ SeverityFatalBg: color.BgMagenta,
SeverityFatalFg: color.FgWhite,
SeverityWarnAttr: color.AttrBold,
SeverityWarnBg: color.BgBlack,