Skip to content

Instantly share code, notes, and snippets.

@bacoords
Created July 9, 2024 22:41
Show Gist options
  • Save bacoords/5bff837a6557d63530ab47e88ca62eef to your computer and use it in GitHub Desktop.
Save bacoords/5bff837a6557d63530ab47e88ca62eef to your computer and use it in GitHub Desktop.
Example dark section style
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"title": "Section Dark Mode",
"slug": "section-dark",
"blockTypes": ["core/group"],
"styles": {
"color": {
"background": "var:preset|color|foreground",
"text": "var:preset|color|background"
},
"elements": {
"button": {
"color": {
"text": "var:preset|color|primary"
},
"border":{
"color": "var:preset|color|primary"
},
":hover": {
"color": {
"background": "var:preset|color|background"
}
}
},
"h3":{
"color" : {
"text": "var:preset|color|primary"
}
},
"link": {
"color": {
"text": "var:preset|color|tertiary"
},
":hover": {
"color": {
"text": "var:preset|color|tertiary"
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment