Skip to content

Commit

Permalink
Fixup remaining blues
Browse files Browse the repository at this point in the history
  • Loading branch information
mirka committed Aug 23, 2022
1 parent e004bda commit 015bc50
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ export const Row = styled.div`
const pointActive = ( { isActive } ) => {
const boxShadow = isActive ? `0 0 0 2px ${ COLORS.gray[ 900 ] }` : null;
const pointColor = isActive ? COLORS.gray[ 900 ] : COLORS.lightGray[ 800 ];
const pointColorHover = isActive
? COLORS.gray[ 900 ]
: COLORS.blue.medium.focus;
const pointColorHover = isActive ? COLORS.gray[ 900 ] : COLORS.ui.theme;

return css`
box-shadow: ${ boxShadow };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const Container = styled.div`

export const Side = styled.div`
box-sizing: border-box;
background: ${ COLORS.blue.wordpress[ 700 ] };
background: ${ COLORS.ui.theme };
filter: brightness( 1 );
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,5 @@ export const PointerIconPathOutline = styled( Path )`
`;

export const PointerIconPathFill = styled( Path )`
fill: ${ COLORS.blue.wordpress[ 700 ] };
fill: ${ COLORS.ui.theme };
`;
4 changes: 2 additions & 2 deletions packages/components/src/palette-edit/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const PaletteItem = styled( View )`
border-top-color: transparent;
}
&.is-selected {
border-color: ${ COLORS.blue.wordpress[ 700 ] };
border-color: ${ COLORS.ui.theme };
}
`;

Expand All @@ -69,7 +69,7 @@ export const NameContainer = styled.div`
white-space: nowrap;
overflow: hidden;
${ PaletteItem }:hover & {
color: var( --wp-admin-theme-color, ${ COLORS.blue.wordpress[ 700 ] } );
color: ${ COLORS.ui.theme };
}
`;

Expand Down

0 comments on commit 015bc50

Please sign in to comment.