deltachat / deltachat-node

Email-based instant messaging for Node.js.
GNU General Public License v3.0
45 stars 11 forks source link

return colors as strings instead of int #450

Closed Simon-Laux closed 4 years ago

Simon-Laux commented 4 years ago

Contact and chat should give the colors as hex strings from dc node, that way we wouldn't need to care about conversion in the frontend.

export function integerToHexColor(integerColor: number) {
  return '#' + integerColor.toString(16)
}