-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.json
More file actions
96 lines (96 loc) · 2.05 KB
/
theme.json
File metadata and controls
96 lines (96 loc) · 2.05 KB
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
{
"$schema": "https://schemas.wp.org/wp/6.8/theme.json",
"version": 3,
"settings": {
"appearanceTools": false,
"color": {
"custom": true,
"palette": [
{ "slug": "primary", "color": "#1a1a1a", "name": "Primary text" },
{ "slug": "secondary", "color": "#555555", "name": "Secondary text" },
{ "slug": "accent", "color": "#FFCC00", "name": "Accent yellow" },
{ "slug": "accent-dark", "color": "#996600", "name": "Accent dark" },
{ "slug": "background", "color": "#ffffff", "name": "Background" },
{ "slug": "background-alt","color":"#f7f6f3", "name": "Background alt" }
]
},
"typography": {
"fontFamilies": [
{
"fontFamily": "'Playfair Display', Georgia, serif",
"name": "Playfair Display",
"slug": "playfair"
},
{
"fontFamily": "'Source Sans 3', system-ui, sans-serif",
"name": "Source Sans 3",
"slug": "source-sans"
}
],
"customFontSize": true
},
"spacing": {
"units": ["%", "px", "em", "rem", "vh", "vw"]
}
},
"styles": {
"typography": {
"fontFamily": "'Source Sans 3', system-ui, sans-serif",
"fontSize": "17px",
"lineHeight": "1.8"
},
"color": {
"text": "#1a1a1a",
"background": "#ffffff"
},
"elements": {
"heading": {
"typography": {
"fontFamily": "'Playfair Display', Georgia, serif"
}
},
"link": {
"color": {
"text": "#996600"
}
}
},
"blocks": {
"core/quote": {
"border": {
"left": {
"color": "#FFCC00",
"width": "3px",
"style": "solid"
}
},
"spacing": {
"padding": {
"left": "1.25rem"
}
},
"typography": {
"fontFamily": "'Playfair Display', Georgia, serif",
"fontStyle": "italic",
"fontSize": "18px"
},
"color": {
"text": "#555555"
}
},
"core/pullquote": {
"border": {
"top": {
"color": "#FFCC00",
"width": "3px",
"style": "solid"
}
},
"typography": {
"fontFamily": "'Playfair Display', Georgia, serif",
"fontStyle": "italic"
}
}
}
}
}