var style = require('../../style/globalStyle.scss');
import * as Grid from '../01-molecules/sections/grid';
import * as ColorPalette from '../03-global/colors/color-palette';
export default function(){
return `
Colors
Color palette
${Grid.getModule({
gridItems:[
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Default color
${ColorPalette.getModule({color: 'default'})}
`
},
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Primary color
${ColorPalette.getModule({color: 'primary'})}
`
},
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Info color
${ColorPalette.getModule({color: 'info'})}
`
},
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Success color
${ColorPalette.getModule({color: 'success'})}
`
},
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Warning color
${ColorPalette.getModule({color: 'warning'})}
`
},
{
sizes: {
phone: 6,
tablet: 4,
tabletLandscape: 3,
screen: 3
},
content: `
Danger color
${ColorPalette.getModule({color: 'danger'})}
`
}
]
})}
`
}