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 = {
|
module.exports = {
|
||||||
purge: {
|
purge: {
|
||||||
content: ['templates/**/*.twig']
|
content: ['templates/**/*.twig']
|
||||||
|
@ -5,6 +7,10 @@ module.exports = {
|
||||||
darkMode: false, // or 'media' or 'class'
|
darkMode: false, // or 'media' or 'class'
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
|
colors: {
|
||||||
|
blue: colors.lightBlue,
|
||||||
|
gray: colors.trueGray
|
||||||
|
},
|
||||||
},
|
},
|
||||||
variants: {
|
variants: {
|
||||||
extend: {},
|
extend: {},
|
||||||
|
|
Loading…
Reference in a new issue