UNPKG

d2-ui

Version:
25 lines (22 loc) 597 B
import React from 'react'; import { hcl } from 'd3-color'; export default function Color(_ref) { var value = _ref.value; var styles = { color: { backgroundColor: value, color: hcl(value).l < 70 ? '#FFF' : '#000', textAlign: 'center', position: 'relative', width: 90, height: 36, lineHeight: 2.5, boxShadow: '0 1px 6px rgba(0,0,0,0.12),0 1px 4px rgba(0,0,0,0.12)' } }; return React.createElement( 'div', { style: styles.color }, value ); }