@storybook/theming#create JavaScript Examples
The following examples show how to use
@storybook/theming#create.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: addons.js From monday-ui-react-core with MIT License | 6 votes |
theme = create({
base: "light",
brandImage: logo,
brandUrl: "https://monday.com",
barSelectedColor: "#5034ff",
brandTitle: "Vibe Design",
background: {
hoverable: "rgba(80, 52, 255, 0.1)"
},
hoverable: "rgba(80, 52, 255, 0.1)"
})
Example #2
Source File: manager.js From proof-of-humanity-web with MIT License | 5 votes |
addons.setConfig({
theme: create({
base: "dark",
brandImage: "/kleros-logo-full-white.png",
brandTitle: "Kleros Components",
brandUrl: "https://kleros.io",
}),
});
Example #3
Source File: theme.js From svelte-chartjs with MIT License | 5 votes |
theme = create({
base: 'light',
brandTitle: 'svelte-chartjs',
brandUrl: 'https://github.com/SauravKanchan/svelte-chartjs',
})
Example #4
Source File: config.js From wix-style-react with MIT License | 5 votes |
theme = create({
brandTitle: `Wix Style React ${version}`,
brandUrl: 'https://github.com/wix/wix-style-react',
})
Example #5
Source File: config.js From wix-style-react with MIT License | 5 votes |
theme = create({
brandTitle: `Wix Style React ${version}`,
brandUrl: 'https://github.com/wix/wix-style-react',
})
Example #6
Source File: manager.js From react-table-library with MIT License | 5 votes |
addons.setConfig({
theme: create({
brandTitle: 'React Table Library',
brandUrl: 'https://github.com/table-library/react-table-library',
}),
showPanel: false,
});