No Description

theme.js 800B

12345678910111213141516171819202122232425262728293031323334353637
  1. import { create } from '@storybook/theming/create';
  2. export default create({
  3. base: 'light',
  4. colorPrimary: '#fc4747',
  5. colorSecondary: '#fc695a',
  6. // UI
  7. appBg: 'white',
  8. appContentBg: 'white',
  9. appBorderColor: 'grey',
  10. appBorderRadius: 4,
  11. // Typography
  12. fontBase: '"Open Sans", sans-serif',
  13. fontCode: 'monospace',
  14. // Text colors
  15. textColor: 'black',
  16. textInverseColor: 'rgba(255,255,255,0.9)',
  17. // Toolbar default and active colors
  18. barTextColor: 'black',
  19. barSelectedColor: 'white',
  20. barBg: '#fc4747',
  21. // Form colors
  22. inputBg: 'white',
  23. inputBorder: 'silver',
  24. inputTextColor: 'black',
  25. inputBorderRadius: 4,
  26. brandTitle: 'BilingoUI',
  27. brandUrl: 'https://www.bilingo.com/',
  28. brandImage: 'https://a.links123.cn/common/imgs/logo_en_mobile@2x.png?2019021101',
  29. });