theme.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. {
  2. "settings": {
  3. "appearanceTools": true,
  4. "color": {
  5. "palette": [
  6. {
  7. "color": "#131415",
  8. "name": "Base",
  9. "slug": "base"
  10. },
  11. {
  12. "color": "#929292",
  13. "name": "Contrast",
  14. "slug": "contrast"
  15. },
  16. {
  17. "color": "#ffffff",
  18. "name": "Primary",
  19. "slug": "primary"
  20. },
  21. {
  22. "color": "#6becae",
  23. "name": "Secondary",
  24. "slug": "secondary"
  25. },
  26. {
  27. "color": "#404040",
  28. "name": "Tertiary",
  29. "slug": "tertiary"
  30. }
  31. ]
  32. },
  33. "layout": {
  34. "contentSize": "660px",
  35. "wideSize": "1000px"
  36. },
  37. "spacing": {
  38. "customSpacingSize": true,
  39. "spacingScale": {
  40. "increment": 1.5,
  41. "mediumStep": 1.5,
  42. "operator": "*",
  43. "steps": 7,
  44. "unit": "rem"
  45. },
  46. "spacingSizes": [],
  47. "units": [
  48. "%",
  49. "px",
  50. "em",
  51. "rem",
  52. "vh",
  53. "vw"
  54. ]
  55. },
  56. "typography": {
  57. "customFontSize": true,
  58. "dropCap": true,
  59. "fluid": true,
  60. "fontFamilies": [
  61. {
  62. "fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
  63. "name": "System Font",
  64. "slug": "system-font"
  65. }
  66. ],
  67. "fontSizes": [
  68. {
  69. "fluid": {
  70. "max": "1.0625rem",
  71. "min": "0.825rem"
  72. },
  73. "name": "Small",
  74. "size": "1rem",
  75. "slug": "small"
  76. },
  77. {
  78. "fluid": {
  79. "max": "1.25rem",
  80. "min": "1rem"
  81. },
  82. "name": "Medium",
  83. "size": "1.125rem",
  84. "slug": "medium"
  85. },
  86. {
  87. "fluid": {
  88. "max": "2rem",
  89. "min": "1.75rem"
  90. },
  91. "name": "Large",
  92. "size": "1.75rem",
  93. "slug": "large"
  94. },
  95. {
  96. "fluid": {
  97. "max": "3rem",
  98. "min": "2.5rem"
  99. },
  100. "name": "Extra Large",
  101. "size": "3rem",
  102. "slug": "x-large"
  103. }
  104. ]
  105. },
  106. "useRootPaddingAwareAlignments": true
  107. },
  108. "styles": {
  109. "blocks": {
  110. "core/button": {
  111. "border": {
  112. "radius": "100px"
  113. },
  114. "color": {
  115. "background": "var(--wp--preset--color--secondary)"
  116. },
  117. "typography": {
  118. "fontSize": "1.1rem"
  119. }
  120. },
  121. "core/code": {
  122. "border": {
  123. "color": "var(--wp--preset--color--contrast)",
  124. "radius": "0.25rem",
  125. "style": "solid",
  126. "width": "2px"
  127. },
  128. "spacing": {
  129. "padding": {
  130. "bottom": "var(--wp--preset--spacing--50)",
  131. "left": "var(--wp--preset--spacing--50)",
  132. "right": "var(--wp--preset--spacing--50)",
  133. "top": "var(--wp--preset--spacing--50)"
  134. }
  135. },
  136. "typography": {
  137. "fontFamily": "monospace"
  138. }
  139. },
  140. "core/comment-author-name": {
  141. "color": {
  142. "text": "var(--wp--preset--color--primary)"
  143. },
  144. "elements": {
  145. "link": {
  146. "color": {
  147. "text": "var(--wp--preset--color--primary)"
  148. }
  149. }
  150. },
  151. "typography": {
  152. "fontSize": "var(--wp--preset--font-size--small)",
  153. "fontStyle": "normal",
  154. "fontWeight": "600"
  155. }
  156. },
  157. "core/comment-content": {
  158. "typography": {
  159. "fontSize": "var(--wp--preset--font-size--small)"
  160. }
  161. },
  162. "core/comment-date": {
  163. "color": {
  164. "text": "var(--wp--preset--color--contrast)"
  165. },
  166. "typography": {
  167. "fontSize": "var(--wp--preset--font-size--small)"
  168. }
  169. },
  170. "core/comment-edit-link": {
  171. "typography": {
  172. "fontSize": "0.8rem"
  173. }
  174. },
  175. "core/comment-reply-link": {
  176. "typography": {
  177. "fontSize": "0.8rem"
  178. }
  179. },
  180. "core/gallery": {
  181. "spacing": {
  182. "margin": {
  183. "bottom": "var(--wp--preset--spacing--50)"
  184. }
  185. }
  186. },
  187. "core/heading": {
  188. "color": {
  189. "text": "var(--wp--preset--color--primary)"
  190. },
  191. "elements": {
  192. "link": {
  193. "color": {
  194. "text": "var(--wp--preset--color--primary)"
  195. }
  196. }
  197. },
  198. "typography": {
  199. "fontStyle": "normal",
  200. "fontWeight": "700"
  201. }
  202. },
  203. "core/list": {
  204. "color": {
  205. "text": "var(--wp--preset--color--primary)"
  206. },
  207. "spacing": {
  208. "padding": {
  209. "left": "var(--wp--preset--spacing--70)"
  210. }
  211. }
  212. },
  213. "core/navigation": {
  214. "elements": {
  215. "link": {
  216. ":hover": {
  217. "typography": {
  218. "textDecoration": "underline"
  219. }
  220. },
  221. "typography": {
  222. "textDecoration": "none"
  223. }
  224. }
  225. },
  226. "spacing": {
  227. "blockGap": "var(--wp--preset--spacing--30)"
  228. },
  229. "typography": {
  230. "fontSize": "1rem"
  231. }
  232. },
  233. "core/paragraph": {
  234. "color": {
  235. "text": "var(--wp--preset--color--primary)"
  236. },
  237. "elements": {
  238. "link": {
  239. ":hover": {
  240. "color": {
  241. "text": "var(--wp--preset--color--secondary)"
  242. }
  243. },
  244. "color": {
  245. "text": "var(--wp--preset--color--secondary)"
  246. }
  247. }
  248. }
  249. },
  250. "core/post-author-biography": {
  251. "color": {
  252. "text": "var(--wp--preset--color--primary)"
  253. },
  254. "elements": {
  255. "link": {
  256. ":hover": {
  257. "color": {
  258. "text": "var(--wp--preset--color--secondary)"
  259. }
  260. },
  261. "color": {
  262. "text": "var(--wp--preset--color--secondary)"
  263. }
  264. }
  265. },
  266. "typography": {
  267. "fontSize": "1rem",
  268. "lineHeight": "1.4"
  269. }
  270. },
  271. "core/post-author-name": {
  272. "color": {
  273. "text": "var(--wp--preset--color--contrast)"
  274. },
  275. "elements": {
  276. "link": {
  277. ":hover": {
  278. "color": {
  279. "text": "var(--wp--preset--color--contrast)"
  280. },
  281. "typography": {
  282. "textDecoration": "underline"
  283. }
  284. },
  285. "color": {
  286. "text": "var(--wp--preset--color--contrast)"
  287. },
  288. "typography": {
  289. "textDecoration": "none"
  290. }
  291. }
  292. },
  293. "typography": {
  294. "fontSize": "1rem"
  295. }
  296. },
  297. "core/post-content": {
  298. "typography": {
  299. "lineHeight": "1.3"
  300. }
  301. },
  302. "core/post-date": {
  303. "color": {
  304. "text": "var(--wp--preset--color--contrast)"
  305. },
  306. "elements": {
  307. "link": {
  308. ":hover": {
  309. "typography": {
  310. "textDecoration": "underline"
  311. }
  312. },
  313. "typography": {
  314. "textDecoration": "none"
  315. }
  316. }
  317. },
  318. "typography": {
  319. "fontSize": "1rem"
  320. }
  321. },
  322. "core/post-terms": {
  323. "elements": {
  324. "link": {
  325. ":hover": {
  326. "color": {
  327. "text": "var(--wp--preset--color--secondary)"
  328. },
  329. "typography": {
  330. "textDecoration": "underline"
  331. }
  332. },
  333. "color": {
  334. "text": "var(--wp--preset--color--secondary)"
  335. },
  336. "typography": {
  337. "textDecoration": "none"
  338. }
  339. }
  340. },
  341. "typography": {
  342. "fontSize": "1rem"
  343. }
  344. },
  345. "core/post-title": {
  346. "color": {
  347. "text": "var(--wp--preset--color--primary)"
  348. },
  349. "elements": {
  350. "link": {
  351. ":hover": {
  352. "typography": {
  353. "textDecoration": "underline"
  354. }
  355. },
  356. "color": {
  357. "text": "var(--wp--preset--color--primary)"
  358. },
  359. "typography": {
  360. "textDecoration": "none"
  361. }
  362. }
  363. },
  364. "spacing": {
  365. "margin": {
  366. "bottom": "0"
  367. }
  368. },
  369. "typography": {
  370. "fontSize": "1rem",
  371. "fontStyle": "normal",
  372. "fontWeight": "600"
  373. }
  374. },
  375. "core/pullquote": {
  376. "border": {
  377. "color": "var(--wp--preset--color--contrast)",
  378. "style": "solid",
  379. "width": "1px 0"
  380. },
  381. "color": {
  382. "text": "var(--wp--preset--color--primary)"
  383. },
  384. "spacing": {
  385. "padding": {
  386. "bottom": "var(--wp--preset--spacing--50)",
  387. "left": "var(--wp--preset--spacing--50)",
  388. "right": "var(--wp--preset--spacing--50)",
  389. "top": "var(--wp--preset--spacing--50)"
  390. }
  391. },
  392. "typography": {
  393. "fontSize": "var(--wp--preset--font-size--large)",
  394. "fontStyle": "normal",
  395. "fontWeight": "400",
  396. "lineHeight": "1.4"
  397. }
  398. },
  399. "core/query-title": {
  400. "color": {
  401. "text": "var(--wp--preset--color--contrast)"
  402. },
  403. "typography": {
  404. "fontSize": "1.4rem",
  405. "fontStyle": "normal",
  406. "fontWeight": "600"
  407. }
  408. },
  409. "core/quote": {
  410. "border": {
  411. "color": "var(--wp--preset--color--primary)",
  412. "style": "solid",
  413. "width": "0 0 0 1px"
  414. },
  415. "color": {
  416. "text": "var(--wp--preset--color--primary)"
  417. },
  418. "spacing": {
  419. "padding": {
  420. "left": "var(--wp--preset--spacing--50)"
  421. }
  422. },
  423. "typography": {
  424. "fontStyle": "normal"
  425. }
  426. },
  427. "core/search": {
  428. "typography": {
  429. "fontSize": "var(--wp--preset--font-size--medium)",
  430. "lineHeight": "1.6"
  431. }
  432. },
  433. "core/separator": {
  434. "border": {
  435. "color": "currentColor",
  436. "style": "solid",
  437. "width": "0 0 1px 0"
  438. },
  439. "color": {
  440. "text": "var(--wp--preset--color--contrast)"
  441. }
  442. },
  443. "core/site-tagline": {
  444. "color": {
  445. "text": "var(--wp--preset--color--contrast)"
  446. },
  447. "typography": {
  448. "fontSize": "1rem"
  449. }
  450. },
  451. "core/site-title": {
  452. "color": {
  453. "text": "var(--wp--preset--color--primary)"
  454. },
  455. "elements": {
  456. "link": {
  457. ":hover": {
  458. "color": {
  459. "text": "var(--wp--preset--color--primary)"
  460. },
  461. "typography": {
  462. "textDecoration": "underline"
  463. }
  464. },
  465. "color": {
  466. "text": "var(--wp--preset--color--primary)"
  467. },
  468. "typography": {
  469. "textDecoration": "none"
  470. }
  471. }
  472. },
  473. "typography": {
  474. "fontSize": "1.4rem",
  475. "fontWeight": "700"
  476. }
  477. },
  478. "core/table": {
  479. "color": {
  480. "text": "var(--wp--preset--color--primary)"
  481. }
  482. },
  483. "core/verse": {
  484. "color": {
  485. "text": "var(--wp--preset--color--primary)"
  486. }
  487. }
  488. },
  489. "color": {
  490. "background": "var(--wp--preset--color--base)",
  491. "text": "var(--wp--preset--color--contrast)"
  492. },
  493. "css": " a[rel=\"tag\"]:before{\ncontent:\"#\";\n}\n\n a[rel=\"tag\"] + span{\ndisplay:none;\n}\n\n a[rel=\"tag\"]:after{\ncontent:\" \";\n}\n\na:any-link {\n text-decoration-thickness: .01em !important;\n text-underline-offset: .20em;\n}\na:where(:not(.wp-element-button)):hover {\n text-decoration: none;\n}",
  494. "elements": {
  495. "button": {
  496. ":active": {
  497. "color": {
  498. "background": "var(--wp--preset--color--primary)",
  499. "text": "var(--wp--preset--color--base)"
  500. }
  501. },
  502. ":focus": {
  503. "color": {
  504. "background": "var(--wp--preset--color--primary)",
  505. "text": "var(--wp--preset--color--base)"
  506. },
  507. "outline": {
  508. "color": "var(--wp--preset--color--primary)",
  509. "offset": "2px",
  510. "style": "dotted",
  511. "width": "1px"
  512. }
  513. },
  514. ":hover": {
  515. "color": {
  516. "background": "var(--wp--preset--color--secondary)",
  517. "text": "var(--wp--preset--color--base)"
  518. }
  519. },
  520. "border": {
  521. "radius": "0.25rem"
  522. },
  523. "color": {
  524. "background": "var(--wp--preset--color--primary)",
  525. "text": "var(--wp--preset--color--base)"
  526. }
  527. },
  528. "h1": {
  529. "typography": {
  530. "fontSize": "var(--wp--preset--font-size--x-large)"
  531. }
  532. },
  533. "h2": {
  534. "typography": {
  535. "fontSize": "var(--wp--preset--font-size--large)"
  536. }
  537. },
  538. "h3": {
  539. "typography": {
  540. "fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)"
  541. }
  542. },
  543. "h4": {
  544. "typography": {
  545. "fontSize": "clamp(1.25rem, calc(1.25rem + ((1vw - 0.48rem) * 0.4808)), 1.5rem)"
  546. }
  547. },
  548. "h5": {
  549. "typography": {
  550. "fontSize": "var(--wp--preset--font-size--medium)"
  551. }
  552. },
  553. "h6": {
  554. "typography": {
  555. "fontSize": "var(--wp--preset--font-size--small)"
  556. }
  557. },
  558. "heading": {
  559. "typography": {
  560. "fontFamily": "var(--wp--preset--font-family--system-font)",
  561. "fontWeight": "400",
  562. "lineHeight": "1.125"
  563. }
  564. },
  565. "link": {
  566. ":hover": {
  567. "typography": {
  568. "textDecoration": "none"
  569. }
  570. },
  571. "color": {
  572. "text": "var(--wp--preset--color--primary)"
  573. }
  574. }
  575. },
  576. "spacing": {
  577. "blockGap": "var(--wp--preset--spacing--30)",
  578. "padding": {
  579. "bottom": "0px",
  580. "left": "0px",
  581. "right": "0px",
  582. "top": "0px"
  583. }
  584. },
  585. "typography": {
  586. "fontFamily": "var(--wp--preset--font-family--system-font)",
  587. "fontSize": "var(--wp--preset--font-size--medium)",
  588. "lineHeight": "1.6"
  589. }
  590. },
  591. "templateParts": [
  592. {
  593. "area": "header",
  594. "name": "header"
  595. },
  596. {
  597. "area": "footer",
  598. "name": "footer"
  599. }
  600. ],
  601. "version": 2,
  602. "$schema": "https://schemas.wp.org/trunk/theme.json"
  603. }