Override Tailwind's default colours
This commit is contained in:
parent
641c61dd47
commit
5fadbbccd0
|
@ -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: {},
|
||||
|
|
Loading…
Reference in a new issue