2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-05-17 07:09:39 +03:00
Files
vue-tribute/tailwind.config.js
Collin Henderson ec27be1d20 Docs and such
2022-01-24 12:04:50 -05:00

34 lines
746 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'),
},
h4: {
color: theme('colors.gray.300'),
},
p: {
color: theme('colors.gray.400'),
},
strong: {
color: theme('colors.gray.300'),
},
code: {
color: theme('colors.gray.100'),
},
},
},
}),
},
},
plugins: [require('@tailwindcss/typography')],
}