Added warning color to theme variables
This commit is contained in:
parent
2ec8b3ec60
commit
77ae14e98f
|
@ -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 />)
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue