theme/tailwind.config.js

19 lines
286 B
JavaScript
Raw Normal View History

2022-01-26 20:58:18 +00:00
module.exports = {
content: [
'./src/*.css',
'./layouts/**/*.html'
],
theme: {
2022-01-26 21:10:57 +00:00
extend: {
colors: {
primary: {
DEFAULT: '#196aff',
}
}
},
2022-01-26 20:58:18 +00:00
},
2022-01-26 21:10:57 +00:00
plugins: [
require('@tailwindcss/typography'),
],
2022-01-26 20:58:18 +00:00
}