theme.json 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. "duotone": [
  31. { "name": "Slate", "slug": "slate", "colors": ["#484c57", "#cfd2d8"] }
  32. ]
  33. },
  34. "typography": {
  35. "defaultFontSizes": false,
  36. "fluid": false,
  37. "fontSizes": [
  38. { "name": "Extra Small", "slug": "x-small", "size": "0.75rem" },
  39. { "name": "Small", "slug": "small", "size": "0.875rem" },
  40. { "name": "Medium", "slug": "medium", "size": "1rem" },
  41. { "name": "Large", "slug": "large", "size": "1.25rem" },
  42. { "name": "Extra Large", "slug": "x-large", "size": "1.625rem" },
  43. { "name": "Extra Extra Large", "slug": "xx-large", "size": "2rem" },
  44. { "name": "Display", "slug": "display", "size": "3.75rem" }
  45. ],
  46. "fontFamilies": [
  47. {
  48. "name": "Computer Modern",
  49. "slug": "computer-modern",
  50. "fontFamily": "\"Computer Modern\", Georgia, serif",
  51. "fontFace": [
  52. {
  53. "fontFamily": "Computer Modern",
  54. "fontWeight": "400",
  55. "fontStyle": "normal",
  56. "fontDisplay": "swap",
  57. "src": [ "file:./fonts/cmunrm.woff" ]
  58. },
  59. {
  60. "fontFamily": "Computer Modern",
  61. "fontWeight": "700",
  62. "fontStyle": "normal",
  63. "fontDisplay": "swap",
  64. "src": [ "file:./fonts/cmunbx.woff" ]
  65. },
  66. {
  67. "fontFamily": "Computer Modern",
  68. "fontWeight": "400",
  69. "fontStyle": "italic",
  70. "fontDisplay": "swap",
  71. "src": [ "file:./fonts/cmunsl.woff" ]
  72. }
  73. ]
  74. },
  75. {
  76. "name": "Georgia",
  77. "slug": "georgia",
  78. "fontFamily": "Georgia, \"Times New Roman\", \"Bitstream Charter\", Times, serif"
  79. },
  80. {
  81. "name": "Helvetica Neue",
  82. "slug": "helvetica-neue",
  83. "fontFamily": "\"Helvetica Neue\", Helvetica, Arial, sans-serif"
  84. },
  85. {
  86. "name": "Courier",
  87. "slug": "courier",
  88. "fontFamily": "\"Courier New\", Courier, monospace"
  89. }
  90. ]
  91. },
  92. "spacing": {
  93. "units": [ "px", "em", "rem", "vh", "vw", "%" ]
  94. }
  95. },
  96. "styles": {
  97. "color": {
  98. "text": "var:preset|color|ink"
  99. },
  100. "typography": {
  101. "fontFamily": "var:preset|font-family|helvetica-neue",
  102. "fontSize": "var:preset|font-size|medium",
  103. "fontWeight": "400",
  104. "lineHeight": "1.45"
  105. },
  106. "elements": {
  107. "heading": {
  108. "color": { "text": "var:preset|color|contrast" },
  109. "typography": { "fontWeight": "700", "lineHeight": "1.3" }
  110. },
  111. "h1": { "typography": { "fontSize": "var:preset|font-size|xx-large" } },
  112. "h2": { "typography": { "fontSize": "var:preset|font-size|x-large" } },
  113. "h3": { "typography": { "fontSize": "var:preset|font-size|large" } },
  114. "h4": { "typography": { "fontSize": "var:preset|font-size|medium" } },
  115. "h5": { "typography": { "fontSize": "var:preset|font-size|small", "letterSpacing": "0.5px" } },
  116. "h6": {
  117. "typography": {
  118. "fontSize": "var:preset|font-size|x-small",
  119. "letterSpacing": "1.4px",
  120. "textTransform": "uppercase"
  121. }
  122. },
  123. "link": {
  124. "color": { "text": "var:preset|color|link" },
  125. ":hover": { "color": { "text": "var:preset|color|link-hover" } }
  126. },
  127. "button": {
  128. "color": {
  129. "background": "var:preset|color|link",
  130. "text": "var:preset|color|base"
  131. },
  132. "border": { "radius": "4px" },
  133. "typography": { "fontWeight": "700" }
  134. }
  135. }
  136. },
  137. "templateParts": [
  138. { "name": "header", "title": "Header", "area": "header" },
  139. { "name": "footer", "title": "Footer", "area": "footer" },
  140. { "name": "footer-full", "title": "Footer (Full)", "area": "footer" }
  141. ]
  142. }