-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.json
103 lines (102 loc) · 1.9 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
102
103
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"settings": {
"appearanceTools": true,
"color": {
"defaultPalette": false,
"background": false,
"palette": [
{
"name": "Black",
"slug": "black",
"color": "#000000"
}
]
},
"custom": {
},
"typography": {
"fontSizes": [
{
"slug": "small",
"size": "1rem",
"name": "Small"
},
{
"slug": "medium",
"size": "1.2rem",
"name": "medium"
},
{
"slug": "large",
"size": "1.5rem",
"name": "large"
}
]
},
"layout": {
"contentSize": "840px",
"wideSize": "1100px",
"allowEditing": true
},
"background": {
"backgroundImage": true
},
"position": {
"sticky": true
},
"spacing": {
"customSpacingSize": false,
"padding": true,
"margin": true,
"units": [ "em", "rem", "vh", "vw", "%" ],
"spacingSizes": [
{
"name": "Step 1",
"size": "0.25rem",
"slug": "10"
},
{
"name": "Step 2",
"size": "0.5rem",
"slug": "20"
},
{
"name": "Step 3",
"size": "0.75rem",
"slug": "30"
},
{
"name": "Step 4",
"size": "1rem",
"slug": "40"
},
{
"name": "Step 5",
"size": "1.25rem",
"slug": "50"
}
]
}
},
"styles": {
"color": {
"background":"var(--wp--preset--color--white)",
"text":"var(--wp--preset--color--black)"
},
"typography":{
"fontSize":"1.5rem",
"fontFamily":"var(--wp--preset--font-family--system-fonts)",
"lineHeight":"1.5"
},
"spacing":{
"margin":{
"top":"0px",
"right":"0px",
"bottom":"0px",
"left":"0px"
}
}
}
}