summaryrefslogtreecommitdiffstats
path: root/.storybook/manager.js
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-22 17:39:39 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-22 17:39:39 +0200
commit3ed7f185e82c0cc87c63b75dc8cddfecc5c608ce (patch)
treeb1b314cec900ebb3f671269f6fc9560242e90a0a /.storybook/manager.js
parent321dae4a47594af83269fa560b375965d7f35763 (diff)
chore(storybook): use custom themes and add dark mode support
Diffstat (limited to '.storybook/manager.js')
-rw-r--r--.storybook/manager.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/.storybook/manager.js b/.storybook/manager.js
new file mode 100644
index 0000000..945c246
--- /dev/null
+++ b/.storybook/manager.js
@@ -0,0 +1,6 @@
+import { addons } from '@storybook/addons';
+import light from './themes/light';
+
+addons.setConfig({
+ theme: light,
+});