frontend/src/helpers/color/colorFromHex.ts

14 lines
245 B
TypeScript
Raw Normal View History

/**
* Returns the hex color code without the '#' if it has one.
*
* @param color
* @returns {string}
*/
2022-10-03 16:37:44 +00:00
export function colorFromHex(color: string) {
if (color.substring(0, 1) === '#') {
color = color.substring(1, 7)
}
return color
}