You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

62 line
1019 B

  1. import {
  2. defaultFont,
  3. primaryColor,
  4. infoColor,
  5. successColor,
  6. warningColor,
  7. dangerColor
  8. } from "assets/jss/nextjs-material-kit.js";
  9. const typographyStyle = {
  10. defaultFontStyle: {
  11. ...defaultFont,
  12. fontSize: "14px"
  13. },
  14. defaultHeaderMargins: {
  15. marginTop: "20px",
  16. marginBottom: "10px"
  17. },
  18. quote: {
  19. padding: "10px 20px",
  20. margin: "0 0 20px",
  21. fontSize: "17.5px",
  22. borderLeft: "5px solid #eee"
  23. },
  24. quoteText: {
  25. margin: "0 0 10px",
  26. fontStyle: "italic"
  27. },
  28. quoteAuthor: {
  29. display: "block",
  30. fontSize: "80%",
  31. lineHeight: "1.42857143",
  32. color: "#777"
  33. },
  34. mutedText: {
  35. color: "#777"
  36. },
  37. primaryText: {
  38. color: primaryColor
  39. },
  40. infoText: {
  41. color: infoColor
  42. },
  43. successText: {
  44. color: successColor
  45. },
  46. warningText: {
  47. color: warningColor
  48. },
  49. dangerText: {
  50. color: dangerColor
  51. },
  52. smallText: {
  53. fontSize: "65%",
  54. fontWeight: "400",
  55. lineHeight: "1",
  56. color: "#777"
  57. }
  58. };
  59. export default typographyStyle;