import React from 'react'; import { ratio, score } from 'wcag-color'; interface ContrastProps { foreground: string; background: string; } export const Contrast = ({ foreground, background }: ContrastProps) => { return ( {score(foreground, background)} {ratio(foreground, background)} ); };