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 (