Skip to content

Instantly share code, notes, and snippets.

@lichin-lin
Last active February 15, 2017 13:16
Show Gist options
  • Save lichin-lin/eabf69782045f5b0ff180386e44664e7 to your computer and use it in GitHub Desktop.
Save lichin-lin/eabf69782045f5b0ff180386e44664e7 to your computer and use it in GitHub Desktop.
this.props.Stroke.colors.map((el, id) => (
<li key={id} >
<div className="colorBox" onClick={() => {this.cancelColor(id)}}
style= {{
background: el,
color: (() => (tinycolor(el).isDark() ? 'white' : 'black'))()
}}>
<p>{el}</p>
</div>
</li>
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment