@shopgate/engage
Version:
Shopgate's ENGAGE library.
14 lines • 414 B
JavaScript
import { themeConfig } from '@shopgate/pwa-common/helpers/config';
const {
colors
} = themeConfig;
export default {
entering: {
background: `var(--color-primary, ${colors.primary})`,
color: `var(--color-primary-contrast, ${colors.primaryContrast})`
},
entered: {
background: `var(--color-primary, ${colors.primary})`,
color: `var(--color-primary-contrast, ${colors.primaryContrast})`
}
};