You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
import PropTypes from 'prop-types'; |
|
|
|
export function Color(props) { |
|
const { color } = props; |
|
const resolvedColor = getComputedStyle(document.documentElement).getPropertyValue(`--${color}`); |
|
|
|
const containerStyle = { |
|
borderRadius: '20px', |
|
width: '12vw', |
|
height: '12vw', |
|
minWidth: '100px', |
|
minHeight: '100px', |
|
borderWidth: '1.5px', |
|
borderStyle: 'solid', |
|
borderColor: 'lightgray', |
|
overflow: 'hidden', |
|
}; |
|
|
|
const colorBlockStyle = { |
|
height: '70%', |
|
width: '100%', |
|
backgroundColor: resolvedColor, |
|
}; |
|
|
|
const colorDescriptionStyle = { |
|
margin: '5px', |
|
textAlign: 'center', |
|
}; |
|
|
|
return ( |
|
<figure style={containerStyle}> |
|
<div style={colorBlockStyle} /> |
|
<figcaption style={colorDescriptionStyle}>{color}</figcaption> |
|
</figure> |
|
); |
|
} |
|
|
|
Color.propTypes = { |
|
color: PropTypes.string.isRequired, |
|
}; |
|
|
|
const rowStyle = { |
|
display: 'flex', |
|
flexDirection: 'row', |
|
flexWrap: 'wrap', |
|
// justifyContent: 'space-around', |
|
alignItems: 'center', |
|
}; |
|
|
|
export function ColorRow(props) { |
|
const { colors } = props; |
|
|
|
return ( |
|
<div style={rowStyle}> |
|
{colors.map(color => ( |
|
<Color key={color} color={color} /> |
|
))} |
|
</div> |
|
); |
|
} |
|
|
|
ColorRow.propTypes = { |
|
colors: PropTypes.arrayOf(PropTypes.string).isRequired, |
|
};
|
|
|