theme/tailwind.config.js

21 lines
357 B
JavaScript

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