2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00
books/tailwind.config.js

48 lines
1008 B
JavaScript
Raw Normal View History

module.exports = {
theme: {
2019-10-04 17:55:28 +00:00
fontFamily: {
2019-10-06 12:33:21 +00:00
sans: ['Inter var experimental', 'sans-serif'],
2019-10-04 17:55:28 +00:00
},
extend: {
2019-10-06 12:33:21 +00:00
maxHeight: {
'64': '16rem'
},
minWidth: {
'56': '14rem'
},
spacing: {
'14': '3.5rem',
'72': '18rem',
'80': '20rem'
},
boxShadow: {
'outline-px': '0 0 0 1px rgba(66,153,225,0.5)'
},
borderRadius: {
'5px': '5px',
'6px': '6px',
'12px': '12px'
},
2019-10-22 19:07:46 +00:00
colors: {
black: '#112B42',
gray: {
'100': '#f4f4f6',
'200': '#e9ebed',
'300': '#dfe1e2',
'400': '#cccfd1',
'500': '#b7bfc6',
'600': '#a1abb4',
'700': '#9fa5a8',
'800': '#7f878a',
'900': '#415668',
}
}
}
},
variants: {
2019-10-24 10:39:57 +00:00
margin: ['responsive', 'first', 'hover', 'focus'],
backgroundColor: ['responsive', 'first', 'hover', 'focus', 'focus-within'],
},
plugins: []
};