theme.json 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. {
  2. "version": 2,
  3. "$schema": "https://schemas.wp.org/trunk/theme.json",
  4. "settings": {
  5. "appearanceTools": true,
  6. "color": {
  7. "custom": false,
  8. "defaultPalette": false,
  9. "defaultGradients": false,
  10. "customGradient": false,
  11. "palette": [
  12. {
  13. "slug": "base",
  14. "color": "#E9E4DC",
  15. "name": "Base"
  16. },
  17. {
  18. "slug": "contrast",
  19. "color": "#484c57",
  20. "name": "Contrast"
  21. },
  22. {
  23. "slug": "primary",
  24. "color": "#006837",
  25. "name": "Primary"
  26. },
  27. {
  28. "slug": "secondary",
  29. "color": "#484c57",
  30. "name": "Secondary"
  31. },
  32. {
  33. "slug": "grey",
  34. "color": "#595959",
  35. "name": "grey"
  36. },
  37. {
  38. "slug": "transparent",
  39. "color": "transparent",
  40. "name": "Transparent"
  41. }
  42. ],
  43. "defaultGradients": false,
  44. "gradients": [
  45. {
  46. "slug": "primary-white",
  47. "gradient": "linear-gradient(#4f7a28 49.9%,#fff 50%)",
  48. "name": "Primary color to white"
  49. },
  50. {
  51. "slug": "white-primary",
  52. "gradient": "linear-gradient(#fff 49.9%,#4f7a28 50%)",
  53. "name": "Horizontal white to Primary color"
  54. }
  55. ],
  56. "duotone": [
  57. {
  58. "colors": [ "#669c35", "#4f7a28"],
  59. "slug": "secondary-primary",
  60. "name": "Secondary and primary"
  61. },
  62. {
  63. "colors": ["#4f7a28", "#f0f0f0"],
  64. "slug": "primary-contrast",
  65. "name": "Primary and Contrast"
  66. }
  67. ]
  68. },
  69. "layout": {
  70. "contentSize": "1080px",
  71. "wideSize": "1280px"
  72. },
  73. "spacing": {
  74. "units": [ "px", "em", "rem", "vh", "vw", "%" ]
  75. },
  76. "typography": {
  77. "dropCap": true,
  78. "fluid": true,
  79. "fontFamilies": [
  80. {
  81. "name": "System",
  82. "slug": "system",
  83. "fontFamily": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif"
  84. },
  85. {
  86. "name": "Serif",
  87. "slug": "serif",
  88. "fontFamily": "\"Times New Roman\",\"New York\",Times,\"Noto Serif\",serif"
  89. },
  90. {
  91. "name": "Monospace",
  92. "slug": "monospace",
  93. "fontFamily": "Consolas,Menlo,Monaco,\"SF Mono\",\"DejaVu Sans Mono\",\"Roboto Mono\",\"Courier New\",Courier,monospace"
  94. },
  95. {
  96. "name": "Handwriting",
  97. "slug": "handwriting",
  98. "fontFamily": "\"Comic Sans MS\",Comic-Sans,cursive",
  99. "fontFace": [
  100. {
  101. "src": "url(\"https://fonts.gstatic.com/s/comicsansms/v14/CSZjBXyZ.ttf\") format(\"truetype\")",
  102. "fontFamily": "\"Comic Sans MS\"",
  103. "fontWeight": "400",
  104. "fontStyle": "normal",
  105. "fontDisplay": "swap"
  106. }
  107. ]
  108. }
  109. ],
  110. "fontSizes": [
  111. {
  112. "slug": "small",
  113. "size": "1.1rem",
  114. "name": "Small",
  115. "fluid": false
  116. },
  117. {
  118. "slug": "medium",
  119. "size": "1.2rem",
  120. "name": "Medium",
  121. "fluid": false
  122. },
  123. {
  124. "slug": "large",
  125. "size": "2rem",
  126. "name": "Large",
  127. "fluid": {
  128. "min": "1.75rem",
  129. "max": "2rem"
  130. }
  131. },
  132. {
  133. "slug": "x-large",
  134. "size": "2.5rem",
  135. "name": "XL",
  136. "fluid": {
  137. "min": "2rem",
  138. "max": "2.75rem"
  139. }
  140. },
  141. {
  142. "slug": "xx-large",
  143. "size": "3.75rem",
  144. "name": "XXL",
  145. "fluid": {
  146. "min": "3rem",
  147. "max": "3.75rem"
  148. }
  149. }
  150. ]
  151. },
  152. "useRootPaddingAwareAlignments": true
  153. },
  154. "styles": {
  155. "blocks": {
  156. "core/code": {
  157. "color": {
  158. "text": "var(--wp--preset--color--contrast)"
  159. }
  160. },
  161. "core/navigation": {
  162. "css": "& .wp-block-site-title{ margin:0; font-weight:400;}",
  163. "elements": {
  164. "link": {
  165. "color": {
  166. "text": "var(--wp--preset--color--contrast)"
  167. },
  168. "typography": {
  169. "textDecoration": "none"
  170. },
  171. ":hover": {
  172. "color": {
  173. "text": "var(--wp--preset--color--contrast)"
  174. },
  175. "typography": {
  176. "textDecoration": "none"
  177. }
  178. },
  179. ":focus": {
  180. "color": {
  181. "text": "var(--wp--preset--color--contrast)"
  182. }
  183. },
  184. ":active": {
  185. "color": {
  186. "text": "var(--wp--preset--color--contrast)"
  187. }
  188. }
  189. }
  190. }
  191. },
  192. "core/post-author-name": {
  193. "typography": {
  194. "fontSize": "var(--wp--preset--font-size--small)"
  195. }
  196. },
  197. "core/post-content": {
  198. "spacing": {
  199. "margin": {
  200. "top": "var(--wp--preset--spacing--60)",
  201. "bottom": "var(--wp--preset--spacing--60)"
  202. }
  203. }
  204. },
  205. "core/post-date": {
  206. "typography": {
  207. "fontSize": "var(--wp--preset--font-size--small)"
  208. }
  209. },
  210. "core/post-excerpt": {
  211. "elements": {
  212. "link": {
  213. "typography": {
  214. "fontSize": "var(--wp--preset--font-size--small)"
  215. }
  216. }
  217. }
  218. },
  219. "core/post-featured-image": {
  220. "spacing": {
  221. "margin": {
  222. "bottom": "var(--wp--preset--spacing--40)"
  223. }
  224. }
  225. },
  226. "core/post-template": {
  227. "spacing": {
  228. "padding": {
  229. "top": "var(--wp--preset--spacing--50)",
  230. "bottom": "var(--wp--preset--spacing--50)"
  231. }
  232. }
  233. },
  234. "core/post-terms": {
  235. "typography": {
  236. "fontSize": "var(--wp--preset--font-size--small)"
  237. }
  238. },
  239. "core/query-pagination": {
  240. "spacing": {
  241. "padding": {
  242. "top": "var(--wp--preset--spacing--50)"
  243. }
  244. }
  245. },
  246. "core/search": {
  247. "css": ".wp-block-search__button-inside .wp-block-search__inside-wrapper{border: none;}",
  248. "typography": {
  249. "lineHeight": "1"
  250. }
  251. }
  252. },
  253. "color": {
  254. "background": "var(--wp--preset--color--base)",
  255. "text": "var(--wp--preset--color--contrast)"
  256. },
  257. "elements": {
  258. "button": {
  259. "spacing": {
  260. "padding": {
  261. "top": "var(--wp--preset--spacing--30)",
  262. "right": "var(--wp--preset--spacing--30)",
  263. "bottom": "var(--wp--preset--spacing--30)",
  264. "left": "var(--wp--preset--spacing--30)"
  265. }
  266. },
  267. "border": {
  268. "color": "var(--wp--preset--color--transparent)",
  269. "width": "4px",
  270. "style": "solid",
  271. "radius": "4px"
  272. },
  273. "color": {
  274. "background": "var(--wp--preset--color--primary)",
  275. "text": "var(--wp--preset--color--contrast)"
  276. },
  277. "typography": {
  278. "fontSize": "var(--wp--preset--font-size--small)",
  279. "fontWeight": "700"
  280. },
  281. "shadow": "var(--wp--preset--shadow--natural)",
  282. ":hover": {
  283. "border": {
  284. "color": "var(--wp--preset--color--secondary)"
  285. }
  286. }
  287. },
  288. "caption": {
  289. "color": {
  290. "text": "var(--wp--preset--color--primary)"
  291. }
  292. },
  293. "cite": {
  294. "color": {
  295. "text": "var(--wp--preset--color--primary)"
  296. }
  297. },
  298. "link": {
  299. "color": {
  300. "text": "var(--wp--preset--color--contrast)"
  301. },
  302. "typography": {
  303. "textDecoration": "none"
  304. },
  305. ":hover": {
  306. "color": {
  307. "text": "var(--wp--preset--color--contrast)"
  308. },
  309. "typography": {
  310. "textDecoration": "none"
  311. }
  312. },
  313. ":focus": {
  314. "color": {
  315. "text": "var(--wp--preset--color--contrast)"
  316. }
  317. },
  318. ":active": {
  319. "color": {
  320. "text": "var(--wp--preset--color--contrast)"
  321. }
  322. }
  323. }
  324. },
  325. "spacing": {
  326. "padding": {
  327. "right": "var(--wp--preset--spacing--50)",
  328. "left": "var(--wp--preset--spacing--50)"
  329. }
  330. },
  331. "typography": {
  332. "fontSize": "var(--wp--preset--font-size--medium)",
  333. "fontFamily": "var(--wp--preset--font-family--system)",
  334. "lineHeight": "1.7"
  335. }
  336. },
  337. "templateParts": [
  338. {
  339. "name": "header",
  340. "title": "Header",
  341. "area": "header"
  342. },
  343. {
  344. "name": "footer",
  345. "title": "Footer",
  346. "area": "footer"
  347. }
  348. ],
  349. "customTemplates": [
  350. {
  351. "name": "no-title",
  352. "title": "No title",
  353. "postTypes": [ "post","page" ]
  354. },
  355. {
  356. "name": "home",
  357. "title": "Home",
  358. "postTypes": [ "page" ]
  359. }
  360. ]
  361. }