From f41a0358bfcf5745e2a0971cde2fa405f4e641c4 Mon Sep 17 00:00:00 2001 From: chad1008 <13856531+chad1008@users.noreply.github.com> Date: Thu, 27 Oct 2022 08:40:28 -0400 Subject: [PATCH] update utils/input color variables (used for TextAreaControl) --- packages/components/src/utils/input/base.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/src/utils/input/base.js b/packages/components/src/utils/input/base.js index 2b4657d47e3b5..2c5010fc92737 100644 --- a/packages/components/src/utils/input/base.js +++ b/packages/components/src/utils/input/base.js @@ -19,10 +19,10 @@ export const inputStyleNeutral = css` `; export const inputStyleFocus = css` - border-color: var( --wp-admin-theme-color ); + border-color: ${ COLORS.ui.theme }; box-shadow: 0 0 0 calc( ${ CONFIG.borderWidthFocus } - ${ CONFIG.borderWidth } ) - var( --wp-admin-theme-color ); + ${ COLORS.ui.theme }; // Windows High Contrast mode will show this outline, but not the box-shadow. outline: 2px solid transparent;