This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
cardiffbjj.co.uk/tailwind.js

30 lines
651 B
JavaScript
Raw Normal View History

2019-02-05 00:07:14 +00:00
let defaultConfig = require('tailwindcss/defaultConfig')()
2018-07-20 22:30:35 +00:00
2019-02-05 00:07:14 +00:00
var colors = {
...defaultConfig.colors,
'green': '#bada55',
'grey-dark': '#303030',
'grey-darkest': '#1e1d1d',
2018-07-21 18:53:43 +00:00
'grey-lightest': '#eae9ea',
'red': '#a42e27',
2018-07-23 11:06:10 +00:00
'red-90': 'rgba(164, 46, 39, .9)',
2019-02-05 00:07:14 +00:00
'red-dark': '#3a1d19',
2018-07-20 22:30:35 +00:00
}
module.exports = {
2019-02-05 00:07:14 +00:00
...defaultConfig,
2018-07-20 22:30:35 +00:00
colors: colors,
2019-02-05 00:07:14 +00:00
textColors: colors,
backgroundColors: colors,
borderColors: Object.assign({ default: colors['grey-light'] }, colors),
2018-07-20 22:30:35 +00:00
fonts: {
2019-02-05 00:07:14 +00:00
...defaultConfig.fonts,
'montserrat': ['Montserrat', 'serif'],
2018-07-20 22:30:35 +00:00
},
tracking: {
2019-02-05 00:07:14 +00:00
...defaultConfig.tracking,
'wider': '0.2em',
2018-07-20 22:30:35 +00:00
},
2019-02-05 00:07:14 +00:00
plugins: [],
2018-07-20 22:30:35 +00:00
}