Skip to content
Snippets Groups Projects
Commit fad353bf authored by Emmanuel Raviart's avatar Emmanuel Raviart
Browse files

Don't erase existing colors.

parent a0ecffc1
No related branches found
No related tags found
No related merge requests found
const colors = require('tailwindcss/colors')
const colors = require("tailwindcss/colors")
const { tailwindExtractor } = require("tailwindcss/lib/lib/purgeUnusedStyles")
module.exports = {
mode: "jit",
plugins: [require("@tailwindcss/forms")],
......@@ -20,18 +19,16 @@ module.exports = {
},
},
theme: {
colors: {
black: colors.black,
white: colors.white,
gray: colors.trueGray,
},
extend: {
colors: {
'le-jaune': '#ded500',
'le-jaune-dark': '#a6a00c',
'le-bleu': '#343bff',
'le-bleu-light':'#d2dfff',
'le-rouge-pjl':'#ff6b6b',
black: colors.black,
"le-bleu": "#343bff",
"le-bleu-light": "#d2dfff",
"le-jaune": "#ded500",
"le-jaune-dark": "#a6a00c",
"le-rouge-pjl": "#ff6b6b",
gray: colors.trueGray,
white: colors.white,
},
},
fontFamily: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment