theme/tailwind.config.js

21 lines
357 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: {
2022-01-26 21:33:01 +00:00
lighter: '#3b7aec',
2022-01-26 21:10:57 +00:00
DEFAULT: '#196aff',
2022-01-26 21:33:01 +00:00
darker: '#0064ff',
2022-01-26 21:10:57 +00:00
}
}
},
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
}