theme/tailwind.config.js

27 lines
550 B
JavaScript
Raw Normal View History

2022-01-26 21:49:09 +00:00
const defaultTheme = require('tailwindcss/defaultTheme')
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 21:49:09 +00:00
},
fontFamily: {
title: ['Quicksand', ...defaultTheme.fontFamily.sans],
},
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-29 13:17:06 +00:00
require('@tailwindcss/forms'),
2022-01-26 21:10:57 +00:00
],
2022-01-26 20:58:18 +00:00
}