-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.json
101 lines (101 loc) · 2.13 KB
/
theme.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"customTemplates": [
{
"title": "Blank",
"name": "blank",
"postTypes": [
"page",
"post"
]
},
{
"title": "Full Width",
"name": "full-width",
"postTypes": [
"page",
"post"
]
}
],
"templateParts": [
{
"area": "header",
"name": "header",
"title": "Header"
},
{
"area": "footer",
"name": "footer",
"title": "Footer"
}
],
"settings": {
"custom": {
"border": {
"radius": "4px"
},
"darkMode": {
"palette": {
"foreground": "#ffffff",
"heading": "#f6f6f9",
"body": "#d0d4e3",
"outline": "#3f4c7c",
"surface": "#3f4c7c",
"background": "#151929",
"white": "#151929"
}
},
"heading": {
"fontVariationSettings": "\"wdth\" 125"
},
"button": {
"fontVariationSettings": "\"wdth\" 125"
},
"surface": {
"borderColor": "transparent"
},
"buttonOutline": {
"color": "var(--wp--preset--color--heading,inherit)"
}
},
"typography": {
"fontFamilies": [
{
"fontFamily": "Mona Sans,var(--wp--preset--font-family--sans-serif)",
"name": "Mona Sans",
"slug": "mona-sans",
"fontFace": [
{
"fontFamily": "Mona Sans",
"fontStyle": "normal",
"fontStretch": "normal",
"fontDisplay": "swap",
"fontWeight": "100 900",
"src": [
"file:./assets/fonts/mona-sans.woff2"
]
}
]
}
]
}
},
"styles": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--mona-sans)",
"fontSize": "var(--wp--preset--font-size--18)"
},
"elements": {
"button": {
"border": {
"radius": "2px"
},
"typography": {
"fontWeight": "var(--wp--custom--font-weight--medium)"
}
}
}
}
}