From 132f8b966a663d086adb99c9a01db18cf392bbc0 Mon Sep 17 00:00:00 2001 From: James Koster Date: Mon, 26 Jun 2023 12:19:19 +0100 Subject: [PATCH] Update colors (#51856) --- packages/edit-site/src/components/layout/style.scss | 2 +- packages/edit-site/src/components/page-library/style.scss | 4 ++-- .../edit-site/src/components/sidebar-button/style.scss | 2 +- .../sidebar-navigation-screen-navigation-menu/style.scss | 4 ++-- .../src/components/sidebar-navigation-screen/index.js | 2 +- .../src/components/sidebar-navigation-screen/style.scss | 1 - packages/edit-site/src/components/site-hub/style.scss | 7 ++++--- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/edit-site/src/components/layout/style.scss b/packages/edit-site/src/components/layout/style.scss index 2097154fa94c34..69a108f5fc9a3a 100644 --- a/packages/edit-site/src/components/layout/style.scss +++ b/packages/edit-site/src/components/layout/style.scss @@ -1,7 +1,7 @@ .edit-site-layout { height: 100%; background: $gray-900; - color: $white; + color: $gray-400; display: flex; flex-direction: column; } diff --git a/packages/edit-site/src/components/page-library/style.scss b/packages/edit-site/src/components/page-library/style.scss index e663fcdc248414..f0bb6b30b9db62 100644 --- a/packages/edit-site/src/components/page-library/style.scss +++ b/packages/edit-site/src/components/page-library/style.scss @@ -6,7 +6,7 @@ } .components-heading { - color: $white; + color: $gray-200; } @include break-medium { @@ -78,7 +78,7 @@ .edit-site-library__search { &#{&} input[type="search"] { background: $gray-800; - color: $gray-100; + color: $gray-200; &:focus { background: $gray-800; diff --git a/packages/edit-site/src/components/sidebar-button/style.scss b/packages/edit-site/src/components/sidebar-button/style.scss index 8388aae266e3ed..5135f97869bb8b 100644 --- a/packages/edit-site/src/components/sidebar-button/style.scss +++ b/packages/edit-site/src/components/sidebar-button/style.scss @@ -19,6 +19,6 @@ &:focus, &:not([aria-disabled="true"]):active, &[aria-expanded="true"] { - color: $white; + color: $gray-100; } } diff --git a/packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/style.scss b/packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/style.scss index e00f9210b4e4bc..ae35cb4525b88b 100644 --- a/packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/style.scss +++ b/packages/edit-site/src/components/sidebar-navigation-screen-navigation-menu/style.scss @@ -1,10 +1,10 @@ .sidebar-navigation__more-menu { .components-button { - color: $gray-600; + color: $gray-200; &:hover, &:focus, &[aria-current] { - color: $white; + color: $gray-100; } } } diff --git a/packages/edit-site/src/components/sidebar-navigation-screen/index.js b/packages/edit-site/src/components/sidebar-navigation-screen/index.js index 83e0da4cf9f833..fd052e00f4ac13 100644 --- a/packages/edit-site/src/components/sidebar-navigation-screen/index.js +++ b/packages/edit-site/src/components/sidebar-navigation-screen/index.js @@ -88,7 +88,7 @@ export default function SidebarNavigationScreen( { ) } diff --git a/packages/edit-site/src/components/sidebar-navigation-screen/style.scss b/packages/edit-site/src/components/sidebar-navigation-screen/style.scss index 417dc7d6b1f059..3a7ff63314262b 100644 --- a/packages/edit-site/src/components/sidebar-navigation-screen/style.scss +++ b/packages/edit-site/src/components/sidebar-navigation-screen/style.scss @@ -12,7 +12,6 @@ } .edit-site-sidebar-navigation-screen__content { - color: $gray-400; padding: 0 $grid-unit-20; .components-item-group { diff --git a/packages/edit-site/src/components/site-hub/style.scss b/packages/edit-site/src/components/site-hub/style.scss index cc2254a6231ee3..d0689fec4efa9e 100644 --- a/packages/edit-site/src/components/site-hub/style.scss +++ b/packages/edit-site/src/components/site-hub/style.scss @@ -20,7 +20,7 @@ opacity: 1; } svg { - fill: $white; + fill: $gray-200; } } &:hover { @@ -55,12 +55,13 @@ .edit-site-site-hub__site-title { margin-left: $grid-unit-05; flex-grow: 1; + color: $gray-200; } .edit-site-site-hub_toggle-command-center { - color: $white; + color: $gray-200; &:hover { - color: $white; + color: $gray-100; } }