mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Update a few addons with the new stats text colors and add them to convert.ts
This commit is contained in:
parent
7e89bdb00c
commit
99122fb1a7
@ -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({
|
||||
|
@ -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 }) =>
|
||||
|
@ -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 => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user