theme/tailwind.config.js

19 lines
286 B
JavaScript

module.exports = {
content: [
'./src/*.css',
'./layouts/**/*.html'
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#196aff',
}
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}