frontend/src/helpers/color/colorFromHex.ts

14 lines
238 B
TypeScript

/**
* Returns the hex color code without the '#' if it has one.
*
* @param color
* @returns {string}
*/
export const colorFromHex = color => {
if (color.substring(0, 1) === '#') {
color = color.substring(1, 7)
}
return color
}