7 lines
237 B
JavaScript
7 lines
237 B
JavaScript
|
import {Color, textColorForBackgroundColor} from '@tryghost/color-utils';
|
||
|
import {helper} from '@ember/component/helper';
|
||
|
|
||
|
export default helper(function hexContrast([hex]) {
|
||
|
return textColorForBackgroundColor(Color(hex)).hex();
|
||
|
});
|