fbredius/storybook

View on GitHub
addons/interactions/src/theme.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Interaction Testing Theme
 * PLACEHOLDER until SB is updated <3
 */
interface Colors {
  pure?: {
    gray?: any;
  };
}

export const colors: Colors = {
  pure: {
    gray: {
      500: '#CCCCCC',
    },
  },
};

export const theme = {
  colors,
};

export default theme;