Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stage: update style variations #7501

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 91 additions & 7 deletions stage/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,68 @@
"background": true,
"custom": true,
"customDuotone": true,
"customGradient": true,
"defaultDuotone": true,
"defaultGradients": true,
"customGradient": false,
"defaultDuotone": false,
"defaultGradients": false,
"defaultPalette": true,
"duotone": [],
"duotone": [
{
"colors": [
"#382F3B",
"#EDDCFE"
],
"name": "Purple and lavender",
"slug": "duotone-1"
},
{
"colors": [
"#F83E3E",
"#0C052A"
],
"name": "Pimento and blueblack",
"slug": "duotone-2"
},
{
"colors": [
"#DADCDD",
"#4342F4"
],
"name": "Grey and aquamarine",
"slug": "duotone-3"
},
{
"colors": [
"#B1F83E",
"#0F2649"
],
"name": "Lizard and blueblack",
"slug": "duotone-4"
},
{
"colors": [
"#0C052A",
"#F83E3E"
],
"name": "Blueblack and Pimento",
"slug": "duotone-5"
},
{
"colors": [
"#4342F4",
"#DADCDD"
],
"name": "Aquamarine and grey",
"slug": "duotone-6"
},
{
"colors": [
"#0F2649",
"#B1F83E"
],
"name": "Blueblack and lizzard",
"slug": "duotone-7"
}
],
"gradients": [],
"palette": [
{
Expand Down Expand Up @@ -129,6 +186,7 @@
}
],
"fontFamily": "Inter Tight",
"name": "Inter Tight",
"slug": "inter-tight"
},
{
Expand All @@ -151,6 +209,7 @@
}
],
"fontFamily": "Libre Franklin",
"name": "Libre Franklin",
"slug": "libre-franklin"
}
],
Expand Down Expand Up @@ -202,6 +261,11 @@
},
"styles": {
"blocks": {
"core/avatar": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/code": {
"border": {
"color": "var(--wp--preset--color--contrast)",
Expand Down Expand Up @@ -250,13 +314,23 @@
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/cover": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/gallery": {
"spacing": {
"margin": {
"bottom": "var(--wp--preset--spacing--50)"
}
}
},
"core/image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/list": {
"spacing": {
"padding": {
Expand Down Expand Up @@ -369,6 +443,11 @@
"lineHeight": "1.4"
}
},
"core/post-featured-image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/post-template": {
"css": ".wp-block-post-template.is-flex-container { gap:0;}"
},
Expand Down Expand Up @@ -488,7 +567,7 @@
},
"color": {
"background": "var(--wp--preset--color--base)",
"text": "var(--wp--preset--color--contrast)"
"text": "var(--wp--preset--color--custom-var-2-color-1)"
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--urbanist)",
Expand All @@ -507,6 +586,11 @@
"text": "var(--wp--preset--color--contrast)"
}
},
"core/site-logo": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/site-tagline": {
"typography": {
"fontSize": "1.4rem",
Expand Down Expand Up @@ -566,7 +650,7 @@
"radius": "0.25rem"
},
"color": {
"background": "var(--wp--preset--color--primary)",
"background": "var(--wp--preset--color--contrast)",
"text": "var(--wp--preset--color--base)"
}
},
Expand Down Expand Up @@ -635,7 +719,7 @@
}
},
"color": {
"text": "var(--wp--preset--color--primary)"
"text": "var(--wp--preset--color--contrast)"
},
"typography": {
"textDecoration": "underline"
Expand Down
Loading