From 7a8b7d6a5c27725f81a94594a1de04a749908df2 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Tue, 24 Mar 2020 12:15:09 +0200 Subject: [PATCH] Fix background colour --- Makefile | 2 +- cmd/podinfo/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 68b2ce8..b21d461 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ EXTRA_RUN_ARGS?= run: GO111MODULE=on go run -ldflags "-s -w -X github.com/stefanprodan/podinfo/pkg/version.REVISION=$(GIT_COMMIT)" cmd/podinfo/* \ --level=debug --grpc-port=9999 --backend-url=https://httpbin.org/status/401 --backend-url=https://httpbin.org/status/500 \ - --ui-logo=https://raw.githubusercontent.com/stefanprodan/podinfo/gh-pages/cuddle_clap.gif --ui-color=#34577c $(EXTRA_RUN_ARGS) + --ui-logo=https://raw.githubusercontent.com/stefanprodan/podinfo/gh-pages/cuddle_clap.gif $(EXTRA_RUN_ARGS) test: GO111MODULE=on go test -v -race ./... diff --git a/cmd/podinfo/main.go b/cmd/podinfo/main.go index 47b3aec..5ed5c6e 100644 --- a/cmd/podinfo/main.go +++ b/cmd/podinfo/main.go @@ -37,7 +37,7 @@ func main() { fs.String("config", "config.yaml", "config file name") fs.String("ui-path", "./ui", "UI local path") fs.String("ui-logo", "", "UI logo") - fs.String("ui-color", "cyan", "UI color") + fs.String("ui-color", "#34577c", "UI color") fs.String("ui-message", fmt.Sprintf("greetings from podinfo v%v", version.VERSION), "UI message") fs.Bool("h2c", false, "allow upgrading to H2C") fs.Bool("random-delay", false, "between 0 and 5 seconds random delay")