Text.js 358 B

1234567891011121314151617
  1. // @flow
  2. import variable from './../variables/platform';
  3. export default (variables /* : * */ = variable) => {
  4. const textTheme = {
  5. fontSize: variables.DefaultFontSize,
  6. fontFamily: variables.fontFamily,
  7. color: variables.textColor,
  8. '.note': {
  9. color: '#a7a7a7',
  10. fontSize: variables.noteFontSize
  11. }
  12. };
  13. return textTheme;
  14. };