Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. import styled from "styled-components";
  2. import COLORS from "../../global/colors";
  3.  
  4.  
  5. /*
  6. 100 Extra Light or Ultra Light
  7. 200 Light or Thin
  8. 300 Book or Demi
  9. 400 Normal or Regular
  10. 500 Medium
  11. 600 Semibold, Demibold
  12. 700 Bold
  13. 800 Black, Extra Bold or Heavy
  14. 900 Extra Black, Fat, Poster or Ultra Black
  15. */
  16.  
  17. export const Roboto10 = styled.Text`
  18. fontFamily: Roboto-Regular;
  19. fontSize: 10;
  20. fontWeight: normal;
  21. fontStyle: normal;
  22. lineHeight: 11;
  23. letterSpacing: 0;
  24. color: ${COLORS.purpleBrown};
  25. `;
  26.  
  27. export const Roboto14 = styled.Text`
  28. fontFamily: Roboto-Regular;
  29. fontSize: 14;
  30. fontWeight: normal;
  31. fontStyle: normal;
  32. lineHeight: 24;
  33. letterSpacing: 0;
  34. color: ${COLORS.purpleBrown}
  35. `;
  36.  
  37. export const Roboto16 = styled.Text`
  38. fontFamily: Roboto-Regular;
  39. fontSize: 16;
  40. fontWeight: normal;
  41. fontStyle: normal;
  42. lineHeight: 24;
  43. letterSpacing: 0;
  44. color: ${COLORS.purpleBrown}
  45. `;
  46.  
  47. export const Roboto16Bold = styled.Text`
  48. fontFamily: Roboto-Regular;
  49. fontSize: 16;
  50. fontWeight: bold;
  51. fontStyle: normal;
  52. lineHeight: 24;
  53. letterSpacing: 0;
  54. color: ${COLORS.purpleBrown};
  55. `;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement