Skip to content

Commit

Permalink
add black, keep backgound on unselected color
Browse files Browse the repository at this point in the history
Signed-off-by: mathieu <mathieu.dreano@gmail.com>
  • Loading branch information
MathieuDreano committed Oct 23, 2024
1 parent 1ce499f commit d863c54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import styled from 'styled-components';

const Wrapper = styled.div`
.current-environment {
background-color: ${(props) => props.color ? undefined : props.theme.sidebar.badge.bg};
border: 2px solid ${(props) => props.color ?? props.theme.sidebar.badge.bg};
border-radius: 15px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const EnvironmentColor = ({ environment, collectionUid }) => {
id="environment-color"
circleSize={14}
circleSpacing={3}
colors={['#9c27b0','#3f51b5','#03a9f4','#009688','#8bc34a','#ffeb3b','#ff9800','#ff5722','#795548','#607d8b']}
colors={['#000000','#9c27b0','#3f51b5','#03a9f4','#009688','#8bc34a','#ffeb3b','#ff9800','#ff5722','#795548','#607d8b']}
color={environment.color}
onChangeComplete={(color) => onColorChange(color.hex)}
/>
Expand Down

0 comments on commit d863c54

Please sign in to comment.