Added warning color to theme variables
This commit is contained in:
parent
2ec8b3ec60
commit
77ae14e98f
|
@ -11,6 +11,6 @@ const FrameDecorator = story => (
|
|||
</div>
|
||||
)
|
||||
|
||||
storiesOf('Components', module)
|
||||
storiesOf('Components /Footer', module)
|
||||
.addDecorator(FrameDecorator)
|
||||
.add('Footer', () => <Component />)
|
||||
.add('Loaded', () => <Component />)
|
||||
|
|
|
@ -6,6 +6,7 @@ const secondary = '#13222b'
|
|||
const tertiary = '#f6f9fc'
|
||||
const fontColor = '#4a5579'
|
||||
const fancyColor = '#fd7890'
|
||||
const warningColor = '#c97c05'
|
||||
const xs = '4px'
|
||||
const sm = '8px'
|
||||
const md = '16px'
|
||||
|
@ -20,6 +21,7 @@ module.exports = Object.assign({}, {
|
|||
background,
|
||||
fontColor,
|
||||
fancy: fancyColor,
|
||||
warning: warningColor,
|
||||
xs,
|
||||
sm,
|
||||
md,
|
||||
|
|
Loading…
Reference in New Issue