From eb043afff3943a70513c17f621345a0f787ab995 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Wed, 24 Jan 2024 09:56:40 -0700 Subject: [PATCH] Fix wrong color hex code. (#16682) Change all instance of `deep-green` to `dark-jungle-green` GitOrigin-RevId: 359b4b21da5e3e6f61e07f8619494cd1e6ccbb63 --- services/web/frontend/stylesheets/app/website-redesign.less | 4 ++-- services/web/frontend/stylesheets/variables/colors.less | 1 - .../web/frontend/stylesheets/variables/css-variables.less | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/services/web/frontend/stylesheets/app/website-redesign.less b/services/web/frontend/stylesheets/app/website-redesign.less index 62afbdbbe6..5afd6e6a50 100644 --- a/services/web/frontend/stylesheets/app/website-redesign.less +++ b/services/web/frontend/stylesheets/app/website-redesign.less @@ -580,7 +580,7 @@ flex-direction: column; align-items: center; padding: 32px; - background: var(--deep-green); + background: var(--dark-jungle-green); color: white; border-radius: 16px; text-align: center; @@ -778,7 +778,7 @@ .green-round-background { .round-background; background: var(--mint-green); - color: var(--deep-green); + color: var(--dark-jungle-green); } .blue-round-background { diff --git a/services/web/frontend/stylesheets/variables/colors.less b/services/web/frontend/stylesheets/variables/colors.less index 8eeadaf80d..5f5b167484 100644 --- a/services/web/frontend/stylesheets/variables/colors.less +++ b/services/web/frontend/stylesheets/variables/colors.less @@ -99,7 +99,6 @@ @dark-jungle-green: #0f271a; @malachite: #13c965; @mint-green: #80cb9c; -@deep-green: #0f2715; @sapphire-blue: #4354a3; @sapphire-blue-dark: #3c4c93; @vivid-tangerine: #f1a695; diff --git a/services/web/frontend/stylesheets/variables/css-variables.less b/services/web/frontend/stylesheets/variables/css-variables.less index 69dc53a8d2..a7326fe81b 100644 --- a/services/web/frontend/stylesheets/variables/css-variables.less +++ b/services/web/frontend/stylesheets/variables/css-variables.less @@ -87,7 +87,6 @@ --caramel: @caramel; --dark-jungle-green: @dark-jungle-green; --malachite: @malachite; - --deep-green: @deep-green; --sapphire-blue: @sapphire-blue; --sapphire-blue-dark: @sapphire-blue-dark; --vivid-tangerine: @vivid-tangerine;