A small collection of personal storybook documentation blocks I use in my projects to document design tokens, colors, typography, etc in a more visual way 🧉
📚 Doc Blocks
ColorPalette
usage /
import { ColorPalette } from "@lucas-labs/plots";
export const palette = [
{
label: 'text',
color: '#320b4f'
},
{
label: 'background',
color: '#feefec'
},
{
name: 'base',
colors: [
{ label: 'secondary', color: '#9985a7' },
{ label: 'dark', color: '#0d0d0d' },
{ label: 'light', color: '#ffffff' },
{ label: 'disabled', color: '#5c5c5c' },
]
},
...
];
<ColorPalette palettes={palette} />
EffectsPalette
usage /
import { EffectsPalette } from "@lucas-labs/plots";
export const effects = [
{
name: 'shadows',
effects: [
{
label: 'noticeable',
description: 'diffuse and more noticeable shadow for big elements',
style: {
boxShadow: '0px 24px 24px rgba(50, 11, 79, 0.16)',
}
},
...
]
}
];
<EffectsPalette effects={effects} />
SpacingSet
usage /
import { SpacingSet } from "@lucas-labs/plots";
export const measures = [
{
name: 'spacing',
measures: [
{ label: '.25x', value: '4px' },
{ label: '.5x', value: '8px' },
...
]
},
{
name: 'radius',
type: 'radius',
measures: [
{ label: '1', value: '4px' },
{ label: '2', value: '8px' },
...
]
}
];
<SpacingSet measures={measures} />
TypeSet
usage /
import { TypeSet } from "@lucas-labs/plots";
export const typographies = [
{
name: 'headings / display',
fontFamily: 'Outfit',
size: '5rem',
weight: '600',
lineHeight: '5.5rem',
letterSpacing: '-0.125rem',
},
{
typographies: [
{
name: 'xs',
fontFamily: 'Inter',
size: '0.75rem',
weight: '400',
lineHeight: 'normal',
letterSpacing: '0.031rem',
},
{
name: 'xs-bold',
fontFamily: 'Inter',
size: '0.75rem',
weight: '600',
lineHeight: 'normal',
letterSpacing: 'normal',
},
]
},
...
];
<TypeSet typographies={typographies} />