2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-06-08 22:12:27 +03:00
Files
vue-tribute/tailwind.config.js
T
Collin Henderson 03dc35436b Initial v2 commit
2022-01-24 09:40:45 -05:00

25 lines
531 B
JavaScript

module.exports = {
mode: 'jit',
content: ['./demo/**/*.{ts,vue,html}'],
theme: {
extend: {
typography: theme => ({
dark: {
css: {
h2: {
color: theme('colors.gray.200'),
},
h3: {
color: theme('colors.gray.300'),
},
p: {
color: theme('colors.gray.400'),
},
},
},
}),
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
}