14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
let colours = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
black: '#000',
|
|
blue: {
|
|
primary: '#24608A',
|
|
},
|
|
current: 'currentColor',
|
|
grey: colours.stone,
|
|
inherit: 'inherit',
|
|
transparent: 'transparent',
|
|
white: '#fff'
|
|
}
|