mirror of
https://github.com/tenrok/vue-tribute.git
synced 2026-05-17 07:09:39 +03:00
34 lines
746 B
JavaScript
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')],
|
|
}
|