Update addons/a11y/src/components/VisionSimulator.tsx

Co-authored-by: Norbert de Langen <ndelangen@me.com>
This commit is contained in:
Michael Arestad 2022-05-02 09:34:31 -06:00 committed by GitHub
parent 84a67cf7d7
commit cbf03373ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,10 +80,10 @@ const Title = styled.span({
textTransform: 'capitalize', textTransform: 'capitalize',
}); });
const Description = styled.span({ const Description = styled.span(({ theme }) => ({
fontSize: '0.9em', fontSize: 11,
color: 'gray', color: theme.textMutedColor,
}); }));
const getColorList = (active: Filter, set: (i: Filter) => void): Link[] => [ const getColorList = (active: Filter, set: (i: Filter) => void): Link[] => [
...(active !== null ...(active !== null