WordPress / theme-experiments

Experimenting with themes made out of blocks.
GNU General Public License v2.0
546 stars 180 forks source link

Updates to theme.json #182

Closed oandregal closed 3 years ago

oandregal commented 3 years ago

Superseedes https://github.com/WordPress/theme-experiments/pull/175

This PR updates the theme.json to the latest format, according to the two PRs that landed in Gutenberg recently:

How was the format before those PR landed:

{
  "global": {
    "settings": { ... },
    "styles": { ... }
  },
  "core/paragraph": {
    "settings": { ... },
    "styles": { ... }
  }
}

How it's now:

{
  "settings": {
    "defaults": { ... },
    "root": { ... },
    "core/paragraph": { ... }
  },
  "styles": {
    "root": { ... },
    "core/paragraph": { ... }
  }
}

There's more details and info in the docs.