diff --git a/packages/block-editor/src/components/global-styles/README.md b/packages/block-editor/src/components/global-styles/README.md index dae82e882debf9..2ddb23cd01f704 100644 --- a/packages/block-editor/src/components/global-styles/README.md +++ b/packages/block-editor/src/components/global-styles/README.md @@ -103,25 +103,25 @@ The global styles folder also offers a set of reusable UI components. These comp ```js { - color: { - text: 'var:preset|color|blue', - background: '#FF0000', - }, - typography: { - fontFamily: 'var:preset|font-family|base', - fontSize: '10px', - lineHeight: 1.5, - }, - spacing: { - padding: 'var:preset|spacing|medium', - }, - elements: { - link: { - color: { - text: 'var:preset|color|green', - }, + color: { + text: 'var:preset|color|blue', + background: '#FF0000', + }, + typography: { + fontFamily: 'var:preset|font-family|base', + fontSize: '10px', + lineHeight: 1.5, + }, + spacing: { + padding: 'var:preset|spacing|medium', + }, + elements: { + link: { + color: { + text: 'var:preset|color|green', + }, + }, }, - }, } ```