mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
30 lines
521 B
JavaScript
30 lines
521 B
JavaScript
/** @type { import('@storybook/react').Preview } */
|
|
const preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
backgrounds: {
|
|
default: "dark",
|
|
values: [
|
|
{
|
|
name: "dark",
|
|
value: "#18181a",
|
|
},
|
|
{
|
|
name: "light",
|
|
value: "#fff",
|
|
},
|
|
{
|
|
name: "debug",
|
|
value: "#ccc",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|