Added warning color to theme variables

This commit is contained in:
apanizo 2018-09-06 10:53:40 +02:00
parent 2ec8b3ec60
commit 77ae14e98f
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,6 @@ const FrameDecorator = story => (
</div> </div>
) )
storiesOf('Components', module) storiesOf('Components /Footer', module)
.addDecorator(FrameDecorator) .addDecorator(FrameDecorator)
.add('Footer', () => <Component />) .add('Loaded', () => <Component />)

View File

@ -6,6 +6,7 @@ const secondary = '#13222b'
const tertiary = '#f6f9fc' const tertiary = '#f6f9fc'
const fontColor = '#4a5579' const fontColor = '#4a5579'
const fancyColor = '#fd7890' const fancyColor = '#fd7890'
const warningColor = '#c97c05'
const xs = '4px' const xs = '4px'
const sm = '8px' const sm = '8px'
const md = '16px' const md = '16px'
@ -20,6 +21,7 @@ module.exports = Object.assign({}, {
background, background,
fontColor, fontColor,
fancy: fancyColor, fancy: fancyColor,
warning: warningColor,
xs, xs,
sm, sm,
md, md,