theme.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/theme.json",
  3. "version": 3,
  4. "settings": {
  5. "appearanceTools": true,
  6. "useRootPaddingAwareAlignments": false,
  7. "layout": {
  8. "contentSize": "1170px",
  9. "wideSize": "1280px"
  10. },
  11. "color": {
  12. "defaultPalette": false,
  13. "defaultGradients": false,
  14. "defaultDuotone": false,
  15. "custom": true,
  16. "palette": [
  17. { "name": "Base", "slug": "base", "color": "#ffffff" },
  18. { "name": "Surface", "slug": "surface", "color": "#f1f1f1" },
  19. { "name": "Ink", "slug": "ink", "color": "#232323" },
  20. { "name": "Contrast", "slug": "contrast", "color": "#000000" },
  21. { "name": "Link", "slug": "link", "color": "#67000a" },
  22. { "name": "Link Hover", "slug": "link-hover", "color": "#2a6496" },
  23. { "name": "Coral", "slug": "coral", "color": "#ff4b33" },
  24. { "name": "Slate", "slug": "slate", "color": "#616674" },
  25. { "name": "Slate Deep", "slug": "slate-deep", "color": "#484c57" },
  26. { "name": "Terminal", "slug": "terminal", "color": "#34f743" },
  27. { "name": "Meta", "slug": "meta", "color": "#777777" },
  28. { "name": "Border", "slug": "border", "color": "#cecece" }
  29. ]
  30. },
  31. "typography": {
  32. "defaultFontSizes": false,
  33. "fluid": false,
  34. "fontSizes": [
  35. { "name": "Extra Small", "slug": "x-small", "size": "0.75rem" },
  36. { "name": "Small", "slug": "small", "size": "0.875rem" },
  37. { "name": "Medium", "slug": "medium", "size": "1rem" },
  38. { "name": "Large", "slug": "large", "size": "1.25rem" },
  39. { "name": "Extra Large", "slug": "x-large", "size": "1.625rem" },
  40. { "name": "Extra Extra Large", "slug": "xx-large", "size": "2rem" },
  41. { "name": "Display", "slug": "display", "size": "3.75rem" }
  42. ],
  43. "fontFamilies": [
  44. {
  45. "name": "Computer Modern",
  46. "slug": "computer-modern",
  47. "fontFamily": "\"Computer Modern\", Georgia, serif",
  48. "fontFace": [
  49. {
  50. "fontFamily": "Computer Modern",
  51. "fontWeight": "400",
  52. "fontStyle": "normal",
  53. "fontDisplay": "swap",
  54. "src": [ "file:./fonts/cmunrm.woff", "file:./fonts/cmunrm.ttf" ]
  55. },
  56. {
  57. "fontFamily": "Computer Modern",
  58. "fontWeight": "700",
  59. "fontStyle": "normal",
  60. "fontDisplay": "swap",
  61. "src": [ "file:./fonts/cmunbx.woff", "file:./fonts/cmunbx.ttf" ]
  62. },
  63. {
  64. "fontFamily": "Computer Modern",
  65. "fontWeight": "400",
  66. "fontStyle": "italic",
  67. "fontDisplay": "swap",
  68. "src": [ "file:./fonts/cmunsl.woff", "file:./fonts/cmunsl.ttf" ]
  69. }
  70. ]
  71. },
  72. {
  73. "name": "Georgia",
  74. "slug": "georgia",
  75. "fontFamily": "Georgia, \"Times New Roman\", \"Bitstream Charter\", Times, serif"
  76. },
  77. {
  78. "name": "Helvetica Neue",
  79. "slug": "helvetica-neue",
  80. "fontFamily": "\"Helvetica Neue\", Helvetica, Arial, sans-serif"
  81. },
  82. {
  83. "name": "Courier",
  84. "slug": "courier",
  85. "fontFamily": "\"Courier New\", Courier, monospace"
  86. }
  87. ]
  88. },
  89. "spacing": {
  90. "units": [ "px", "em", "rem", "vh", "vw", "%" ]
  91. }
  92. },
  93. "styles": {
  94. "color": {
  95. "text": "var:preset|color|ink"
  96. },
  97. "typography": {
  98. "fontFamily": "var:preset|font-family|helvetica-neue",
  99. "fontSize": "var:preset|font-size|medium",
  100. "fontWeight": "400",
  101. "lineHeight": "1.45"
  102. },
  103. "elements": {
  104. "heading": {
  105. "color": { "text": "var:preset|color|contrast" },
  106. "typography": { "fontWeight": "700", "lineHeight": "1.3" }
  107. },
  108. "h1": { "typography": { "fontSize": "var:preset|font-size|xx-large" } },
  109. "h2": { "typography": { "fontSize": "var:preset|font-size|x-large" } },
  110. "h3": { "typography": { "fontSize": "var:preset|font-size|large" } },
  111. "h4": { "typography": { "fontSize": "var:preset|font-size|medium" } },
  112. "h5": { "typography": { "fontSize": "var:preset|font-size|small", "letterSpacing": "0.5px" } },
  113. "h6": {
  114. "typography": {
  115. "fontSize": "var:preset|font-size|x-small",
  116. "letterSpacing": "1.4px",
  117. "textTransform": "uppercase"
  118. }
  119. },
  120. "link": {
  121. "color": { "text": "var:preset|color|link" },
  122. ":hover": { "color": { "text": "var:preset|color|link-hover" } }
  123. },
  124. "button": {
  125. "color": {
  126. "background": "var:preset|color|link",
  127. "text": "var:preset|color|base"
  128. },
  129. "border": { "radius": "4px" },
  130. "typography": { "fontWeight": "700" }
  131. }
  132. }
  133. }
  134. }