From d698282af14555cef8e546e4ead00bf6fd608e56 Mon Sep 17 00:00:00 2001 From: Andrew <44983823+andrewvasilchuk@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:17:05 +0300 Subject: [PATCH] docs: correctly spread default theme colors (#4110) --- docs/docs/guides/02-theming.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/02-theming.mdx b/docs/docs/guides/02-theming.mdx index 94d0aea9c0..f033653ece 100644 --- a/docs/docs/guides/02-theming.mdx +++ b/docs/docs/guides/02-theming.mdx @@ -170,9 +170,9 @@ const theme = { ...DefaultTheme, // Specify custom property myOwnProperty: true, - ...DefaultTheme.colors, // Specify custom property in nested object colors: { + ...DefaultTheme.colors, myOwnColor: '#BADA55', }, };