From 2120ba61afa329844616f0c4ea8ef51aed512956 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 20 Mar 2019 22:48:08 +0000 Subject: [PATCH] Update Tailwind config file --- tailwind.config.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tailwind.config.js 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 }), + ], +}