trezy/firebase-system-update

View on GitHub
src/helpers/getReadableTextColorForBackground.js

Summary

Maintainability
A
0 mins
Test Coverage
// Module imports
import tinycolor from 'tinycolor2'





export function getReadableTextColorForBackground(backgroundColor) {
    if (tinycolor.isReadable(backgroundColor, '#4a4a4a')) {
        return '#4a4a4a'
    }

    return '#ffffff'
}