storybook/docs/api/doc-block-colorpalette.mdx
2024-06-13 17:52:40 +01:00

94 lines
1.9 KiB
Plaintext

---
title: 'ColorPalette'
---
<YouTubeCallout id="tyNIspWhFyU" title="Storybook for Design Systems - ColorPalette Doc Block" params='start=20' />
The `ColorPalette` block allows you to document all color-related items (e.g., swatches) used throughout your project.
![Screenshot of ColorPalette and ColorItem blocks](./doc-block-colorpalette.png)
{/* prettier-ignore-start */}
```md
{/* Colors.mdx */}
import { Meta, ColorPalette, ColorItem } from '@storybook/blocks';
<Meta title="Colors" />
<ColorPalette>
<ColorItem
title="theme.color.greyscale"
subtitle="Some of the greys"
colors={{ White: '#FFFFFF', Alabaster: '#F8F8F8', Concrete: '#F3F3F3' }}
/>
<ColorItem
title="theme.color.primary"
subtitle="Coral"
colors={{ WildWatermelon: '#FF4785' }}
/>
<ColorItem
title="theme.color.secondary"
subtitle="Ocean"
colors={{ DodgerBlue: '#1EA7FD' }}
/>
<ColorItem
title="theme.color.positive"
subtitle="Green"
colors={{
Apple: 'rgba(102,191,60,1)',
Apple80: 'rgba(102,191,60,.8)',
Apple60: 'rgba(102,191,60,.6)',
Apple30: 'rgba(102,191,60,.3)',
}}
/>
</ColorPalette>
```
{/* prettier-ignore-end */}
## ColorPalette
```js
import { ColorPalette } from '@storybook/blocks';
```
`ColorPalette` is configured with the following props:
### `children`
Type: `React.ReactNode`
`ColorPalette` expects only `ColorItem` children.
## ColorItem
```js
import { ColorItem } from '@storybook/blocks';
```
`ColorItem` is configured with the following props:
### `colors`
(**Required**)
Type: `string[] | { [key: string]: string }`
Provides the list of colors to be displayed. Accepts any valid CSS color format (hex, RGB, HSL, etc.). When an object is provided, the keys will be displayed above the values.
### `subtitle`
(**Required**)
Type: `string`
Provides an additional description of the color.
### `title`
(**Required**)
Type: `string`
Sets the name of the color to be displayed.