Skip to content

Commit

Permalink
update AnglePickerControl component color variables
Browse files Browse the repository at this point in the history
  • Loading branch information
chad1008 committed Oct 25, 2022
1 parent e7ef2ff commit 719517a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/components/src/angle-picker-control/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ import { Root } from './styles/angle-picker-control-styles';
import { space } from '../ui/utils/space';
import { Text } from '../text';
import { Spacer } from '../spacer';
import { COLORS } from '../utils/colors-values';

const accentColor = COLORS.ui.theme;

export default function AnglePickerControl( {
/** Start opting into the new margin-free styles that will become the default in a future version. */
Expand Down Expand Up @@ -70,7 +73,7 @@ export default function AnglePickerControl( {
marginBottom={ 0 }
marginRight={ space( 3 ) }
style={ {
color: 'var( --wp-admin-theme-color )',
color: accentColor,
} }
>
°
Expand Down

0 comments on commit 719517a

Please sign in to comment.