From f9c79eef64796fd4a21e1400404c3e350d547043 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 1 Dec 2020 17:01:08 -0500 Subject: [PATCH] Slightly more subtle default gradient --- progress/progress.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index 49da0d9..ac37004 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -23,7 +23,7 @@ type Option func(*Model) error // WithDefaultGradient sets a gradient fill with default colors. func WithDefaultGradient() Option { - return WithGradient("#00dbde", "#fc00ff") + return WithGradient("#5A56E0", "#EE6FF8") } // WithGradient sets a gradient fill blending between two colors. @@ -36,7 +36,7 @@ func WithGradient(colorA, colorB string) Option { // WithDefaultScaledGradient sets a gradient with default colors, and scales the // gradient to fit the filled portion of the ramp. func WithDefaultScaledGradient() Option { - return WithScaledGradient("#00dbde", "#fc00ff") + return WithScaledGradient("#5A56E0", "#EE6FF8") } // WithScaledGradient scales the gradient to fit the width of the filled portion of