-
Notifications
You must be signed in to change notification settings - Fork 88
/
theme.json
126 lines (126 loc) · 2.39 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"settings": {
"layout": {
"contentSize": "840px",
"wideSize": "1100px"
},
"color": {
"palette": [
{
"slug": "base",
"color": "#111",
"name": "Base"
},
{
"slug": "contrast",
"color": "#fefefe",
"name": "Contrast"
},
{
"slug": "accent",
"color": "#383838",
"name": "Accent"
},
{
"slug": "accent-2",
"color": "#00838f",
"name": "Accent Two"
},
{
"slug": "accent-3",
"color": "#4fb3bf",
"name": "Accent Three"
}
],
"gradients": [
{
"slug": "accent-2-to-contrast",
"gradient": "linear-gradient(135deg, var(--wp--preset--color--accent-2), var(--wp--preset--color--contrast))",
"name": "Accent Two to Contrast"
}
]
},
"typography": {
"fontFamilies": [
{
"fontFamily": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
"slug": "system-fonts",
"name": "System Fonts"
},
{
"fontFamily": "Geneva, Tahoma, Verdana, sans-serif",
"slug": "geneva-verdana"
},
{
"fontFamily": "Cambria, Georgia, serif",
"slug": "cambria-georgia"
}
],
"fontSizes": [
{
"slug": "extra-small",
"size": "1rem",
"name": "Extra small"
},
{
"slug": "small",
"size": "1.125rem",
"name": "Small"
},
{
"slug": "medium",
"size": "1.25rem",
"name": "Medium"
},
{
"slug": "large",
"size": "1.5rem",
"name": "Large"
},
{
"slug": "extra-large",
"size": "2.5rem",
"name": "Extra large"
}
],
"lineHeight": true
},
"spacing": {
"padding": true,
"margin": true,
"units": [ "px", "em", "rem", "vh", "vw", "%" ]
}
},
"styles": {
"color": {
"background": "var(--wp--preset--color--base)",
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--accent-2)"
}
}
},
"typography": {
"fontSize": "var(--wp--preset--font-size--medium)",
"fontFamily": "var(--wp--preset--font-family--system-fonts)",
"lineHeight": "1.7"
}
},
"templateParts": [
{
"name": "header",
"area": "header",
"title": "Header"
},
{
"name": "footer",
"area": "footer",
"title": "Footer"
}
]
}