.storybook/backgrounds.js
import { brandColorsObject } from 'common/styles/styleExports';
import { capitalizeFirstLetter } from 'common/utils/string-utils';
const backgroundsPaletteArray = Object.keys(brandColorsObject).map(name => ({
name: capitalizeFirstLetter(name),
value: brandColorsObject[name],
}));
export default backgroundsPaletteArray;