-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,14 @@ | ||
| /**Defines the theme for the documentation */ | ||
| /** | ||
| * Custom Storybook theme. | ||
| * @see https://storybook.js.org/docs/react/configure/theming#create-a-theme-quickstart | ||
| * @see https://storybook.js.org/docs/react/configure/features-and-behavior | ||
| */ | ||
| import { create } from '@storybook/theming'; | ||
|
|
||
| export default create({ | ||
| /** | ||
| * Set the base styling of the theme | ||
| * @type {string}*/ | ||
| base: 'light', | ||
| /** | ||
| * The title of the documentation | ||
| * @type {string} | ||
| * @example webqueue2 Style Guide | ||
| * @default <app name from package.json> + Front End Docs | ||
| */ | ||
| brandTitle: 'webqueue2 Front End Docs', | ||
| /** | ||
| * The URL for the website associated with the documentation. | ||
| * @type {string} | ||
| */ | ||
| brandUrl: 'https://engineering.purdue.edu/webqueue/webqueue2/build', | ||
| /** | ||
| * The the brand icon used in the Storybook sidebar. Can use any common image formats | ||
| * @type {string} | ||
| */ | ||
| brandImage: 'https://github.itap.purdue.edu/ECN/webqueue2-frontend/blob/master/public/logo192.png?raw=true', | ||
| /** | ||
| * Set the background of the UI. | ||
| * @type {string} | ||
| * @default 'white' | ||
| */ | ||
| appBg: 'white' | ||
| base: 'light', | ||
| brandTitle: 'webqueue2 Front End Docs', | ||
| brandUrl: 'https://engineering.purdue.edu/webqueue/webqueue2/build', | ||
| brandImage: 'https://github.itap.purdue.edu/ECN/webqueue2-frontend/blob/master/public/logo192.png?raw=true', | ||
| appBg: 'white' | ||
| }); |