diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 000000000..0144f6643 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,20 @@ +let defaultTheme = require('tailwindcss/defaultTheme') + +module.exports = { + prefix: 'tw-', + important: true, + theme: { + extend: { + colors: { + black: '#000', + }, + variants: { + textStyle: ['responsive', 'hover', 'focus', 'hocus'], + }, + }, + }, + plugins: [ + require('tailwindcss-interaction-variants')(), + require('tailwindcss-spaced-items')({ values: defaultTheme.spacing }), + ], +}