Update a few addons with the new stats text colors and add them to convert.ts

This commit is contained in:
Michael Arestad 2022-08-26 09:12:38 -06:00
parent 7e89bdb00c
commit 99122fb1a7
3 changed files with 8 additions and 5 deletions

View File

@ -30,15 +30,15 @@ const RotatingIcon = styled(Icon)(({ theme }) => ({
}));
const Passes = styled.span(({ theme }) => ({
color: theme.color.positive,
color: theme.color.positiveText,
}));
const Violations = styled.span(({ theme }) => ({
color: theme.color.negative,
color: theme.color.negativeText,
}));
const Incomplete = styled.span(({ theme }) => ({
color: theme.color.warning,
color: theme.color.warningText,
}));
const Centered = styled.span({

View File

@ -20,11 +20,11 @@ const parseValue = (value: string): any => {
};
const StyledExpected = styled.span(({ theme }) => ({
color: theme.color.positive,
color: theme.color.positiveText,
}));
const StyledReceived = styled.span(({ theme }) => ({
color: theme.color.negative,
color: theme.color.negativeText,
}));
export const Received = ({ value, parsed }: { value: any; parsed?: boolean }) =>

View File

@ -69,6 +69,9 @@ const createColors = (vars: ThemeVars): Color => ({
defaultText: vars.textColor || color.darkest,
inverseText: vars.textInverseColor || color.lightest,
positiveText: color.positiveText,
negativeText: color.negativeText,
warningText: color.warningText,
});
export const convert = (inherit: ThemeVars = themes[getPreferredColorScheme()]): StorybookTheme => {