Override Tailwind's default colours

This commit is contained in:
Oliver Davies 2020-12-26 22:41:48 +00:00
parent 641c61dd47
commit 5fadbbccd0

View file

@ -1,3 +1,5 @@
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: ['templates/**/*.twig']
@ -5,6 +7,10 @@ module.exports = {
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
colors: {
blue: colors.lightBlue,
gray: colors.trueGray
},
},
variants: {
extend: {},