From 9083582d8c503df95ee77ec276fb958d49aeaea5 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Thu, 2 Mar 2023 10:43:04 +0000 Subject: [PATCH] Add backgrounds for stories to be our greyish color and a white & remove black --- src/Umbraco.Web.UI.Client/.storybook/preview.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/.storybook/preview.js b/src/Umbraco.Web.UI.Client/.storybook/preview.js index 9f9a472f4c..8f05c5ff07 100644 --- a/src/Umbraco.Web.UI.Client/.storybook/preview.js +++ b/src/Umbraco.Web.UI.Client/.storybook/preview.js @@ -108,6 +108,19 @@ export const parameters = { global: handlers, }, }, + backgrounds: { + default: 'Greyish', + values: [ + { + name: 'Greyish', + value: '#F3F3F5', + }, + { + name: 'White', + value: '#ffffff', + }, + ], + }, }; setCustomElements(customElementManifests);