2023-01-07 10:18:16 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-01-10 12:53:49 +00:00
|
|
|
content: ["./src/Themes/Default/Templates/*.{twig,html,js}"],
|
2023-01-07 10:18:16 +00:00
|
|
|
theme: {
|
2023-01-08 05:48:49 +00:00
|
|
|
extend: {
|
|
|
|
typography ({ theme }) {
|
|
|
|
return {
|
|
|
|
DEFAULT: {
|
|
|
|
css: {
|
|
|
|
'code::before': {
|
|
|
|
content: 'none',
|
|
|
|
},
|
|
|
|
'code::after': {
|
|
|
|
content: 'none'
|
|
|
|
},
|
|
|
|
code: {
|
|
|
|
backgroundColor: theme('colors.zinc.700'),
|
|
|
|
color: theme('colors.zinc.100'),
|
|
|
|
paddingLeft: theme('spacing[1.5]'),
|
|
|
|
paddingRight: theme('spacing[1.5]'),
|
|
|
|
paddingTop: theme('spacing.1'),
|
|
|
|
paddingBottom: theme('spacing.1'),
|
|
|
|
borderRadius: theme('borderRadius.DEFAULT'),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-01-07 10:18:16 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/typography'),
|
2023-01-08 16:54:54 +00:00
|
|
|
require('@tailwindcss/forms'),
|
2023-01-07 10:18:16 +00:00
|
|
|
],
|
2023-01-08 05:48:49 +00:00
|
|
|
}
|