From fad353bfc69617ca095f6031a0de8863f4791b5e Mon Sep 17 00:00:00 2001
From: Emmanuel Raviart <emmanuel@raviart.com>
Date: Wed, 12 May 2021 09:57:34 +0200
Subject: [PATCH] Don't erase existing colors.

---
 tailwind.config.cjs | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index a5286e2cf..e972c0c48 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -1,7 +1,6 @@
-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: {
-- 
GitLab