From 7180ce590a9c0dcb55bf66676879fa8546a26c57 Mon Sep 17 00:00:00 2001 From: ben-basten <45583362+ben-basten@users.noreply.github.com> Date: Tue, 4 Jun 2024 23:36:05 -0400 Subject: [PATCH] feat: immich branding --- web/.storybook/manager.ts | 6 ++++++ web/.storybook/theme.ts | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 web/.storybook/manager.ts create mode 100644 web/.storybook/theme.ts diff --git a/web/.storybook/manager.ts b/web/.storybook/manager.ts new file mode 100644 index 0000000000..2e62084432 --- /dev/null +++ b/web/.storybook/manager.ts @@ -0,0 +1,6 @@ +import { addons } from '@storybook/manager-api'; +import theme from './theme'; + +addons.setConfig({ + theme, +}); diff --git a/web/.storybook/theme.ts b/web/.storybook/theme.ts new file mode 100644 index 0000000000..fb2555fa25 --- /dev/null +++ b/web/.storybook/theme.ts @@ -0,0 +1,9 @@ +import { create } from '@storybook/theming/create'; +import brandImage from '../../design/immich-logo-inline-light.png'; + +export default create({ + base: 'light', + brandTitle: 'immich', + brandUrl: 'https://immich.app/', + brandImage, +});