Override gray-600

This commit is contained in:
Oliver Davies 2019-03-22 22:10:31 +00:00
parent ade2956ba3
commit 30befc2487
2 changed files with 10 additions and 1 deletions
wp-content/themes/twentynineteen-tailwindcss

View file

@ -0,0 +1,9 @@
module.exports = {
theme: {
extend: {
colors: {
'gray-600': '#767676',
},
},
},
}

View file

@ -1,6 +1,6 @@
const mix = require('laravel-mix')
mix.postCss('src/css/style.css', '', [
require('tailwindcss')(),
require('tailwindcss')('./tailwind.config.js'),
require('postcss-nested')(),
])