diff --git a/client/my-sites/customer-home/cards/actions/quick-links/index.jsx b/client/my-sites/customer-home/cards/actions/quick-links/index.jsx
index a283a691222a2..3d3b64833c72b 100644
--- a/client/my-sites/customer-home/cards/actions/quick-links/index.jsx
+++ b/client/my-sites/customer-home/cards/actions/quick-links/index.jsx
@@ -40,7 +40,6 @@ import './style.scss';
export const QuickLinks = ( {
canEditPages,
canCustomize,
- canSwitchThemes,
canManageSite,
canModerateComments,
customizeUrl,
@@ -178,15 +177,6 @@ export const QuickLinks = ( {
/>
>
) }
- { canSwitchThemes && (
-
- ) }
{ canManageSite && ! isWpcomStagingSite && (
<>
{ canAddEmail ? (
@@ -227,6 +217,18 @@ export const QuickLinks = ( {
) }
{ canManageSite && (
<>
+
+ }
+ />
{
siteId,
canEditPages: canCurrentUser( state, siteId, 'edit_pages' ),
canCustomize: canCurrentUser( state, siteId, 'customize' ),
- canSwitchThemes: canCurrentUser( state, siteId, 'switch_themes' ),
canManageSite: canCurrentUser( state, siteId, 'manage_options' ),
canModerateComments: canCurrentUser( state, siteId, 'moderate_comments' ),
customizeUrl: getCustomizerUrl( state, siteId ),
diff --git a/client/my-sites/customer-home/cards/actions/quick-links/style.scss b/client/my-sites/customer-home/cards/actions/quick-links/style.scss
index 366cdf96a3cc5..0128ddd46431d 100644
--- a/client/my-sites/customer-home/cards/actions/quick-links/style.scss
+++ b/client/my-sites/customer-home/cards/actions/quick-links/style.scss
@@ -69,6 +69,11 @@
&.dashicons {
color: var(--color-neutral-80);
+
+ &.dashicons-admin-appearance {
+ color: var(--color-neutral-60);
+ line-height: 24px;
+ }
}
}