Text.js 342 B

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