From 00d7134a271aab25f47f899ff5eb6a4e1e440720 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 24 Apr 2019 00:19:28 +0100 Subject: [PATCH] Add inherit colour --- postcss.config.js | 2 +- tailwind.config.js | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 tailwind.config.js diff --git a/postcss.config.js b/postcss.config.js index acd061e..19a6dc3 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { plugins: { - tailwindcss: "", + tailwindcss: "./tailwind.config.js", autoprefixer: {} } } diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..20926d3 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +module.exports = { + theme: { + extend: { + colors: { + inherit: 'inherit' + } + } + } +}