From 74b0eca2eb93293f56fcae14b9f92fc97506fa8f Mon Sep 17 00:00:00 2001 From: Eric Defore Date: Thu, 9 Apr 2026 09:55:08 -0400 Subject: [PATCH] Update blue colors to match Liquid Web brand palette MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace legacy blues with the new Liquid Web brand blues: - Primary base: #0047FF → #1145C9 - Primary hover: #0032b7 → #0E38A3 - Primary disabled: rgba(0,71,255,0.5) → rgba(17,69,201,0.5) - Link color: #0047FF → #1145C9 --- src/resources/css/styles.css | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/resources/css/styles.css b/src/resources/css/styles.css index d0818f0..6c5292e 100644 --- a/src/resources/css/styles.css +++ b/src/resources/css/styles.css @@ -75,7 +75,7 @@ .stellarwp-telemetry-btn-grey, .stellarwp-telemetry-btn-text { padding: 8px 12px; - background: #0047FF; + background: #1145C9; border-radius: 4px; color: #fff; text-decoration: none; @@ -86,12 +86,12 @@ } .stellarwp-telemetry-btn-primary:hover { - background: #0032b7; + background: #0E38A3; } .stellarwp-telemetry-btn-primary:disabled, .stellarwp-telemetry-btn-primary.disabled { - background:rgba(0, 71, 255, 0.5); + background: rgba(17, 69, 201, 0.5); pointer-events: none; } @@ -105,14 +105,13 @@ } .stellarwp-telemetry-btn-text { - background: #fff; - color: #4E4E4E; + background: transparent; + color: #1145C9; padding: 0; } .stellarwp-telemetry-btn-text--skip { margin-left: 1rem; - color: #a7aaad; } .stellarwp-telemetry-btn-text:hover { @@ -175,7 +174,7 @@ } .stellarwp-telemetry-links__link { - color: #0047FF; + color: #1145C9; text-decoration: none; }