contrast.js 833 B

123456789101112131415161718192021222324252627
  1. import theme from 'weaveworks-ui-components/lib/theme';
  2. import defaultTheme from './default';
  3. const contrastTheme = {
  4. ...defaultTheme,
  5. /* contrast overrides */
  6. backgroundColor: theme.colors.white,
  7. backgroundDarkerColor: theme.colors.purple200,
  8. backgroundDarkerSecondaryColor: theme.colors.purple200,
  9. bodyBackgroundColor: theme.colors.white,
  10. borderLightColor: theme.colors.gray600,
  11. btnOpacityDefault: 1,
  12. btnOpacityDisabled: 0.4,
  13. btnOpacitySelected: 1,
  14. edgeColor: theme.colors.black,
  15. edgeHighlightOpacity: 0.3,
  16. labelBackgroundColor: theme.colors.white,
  17. linkOpacityDefault: 1,
  18. nodeElementsInBackgroundOpacity: 0.4,
  19. textColor: theme.colors.black,
  20. textDarkerColor: theme.colors.black,
  21. textSecondaryColor: theme.colors.black,
  22. textTertiaryColor: theme.colors.black,
  23. };
  24. export default contrastTheme;