From 9a01bca84ddbb73936b89e3582ebb5cbbc147f53 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 30 Jan 2024 17:12:47 +0100 Subject: [PATCH] updating colors --- tailwind.config.js | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index ff061dc..92b1608 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,8 +1,26 @@ /** @type {import('tailwindcss').Config} */ + module.exports = { content: ["./src/**/*.{js,jsx}"], theme: { - extend: {}, + extend: { + colors: { + construction: "#F1D524", + transparent: "transparent", + current: "currentColor", + white: "#ffffff", + tahiti: { + 100: "#cffafe", + 200: "#a5f3fc", + 300: "#67e8f9", + 400: "#22d3ee", + 500: "#06b6d4", + 600: "#0891b2", + 700: "#0e7490", + 800: "#155e75", + 900: "#164e63", + }, + }, + }, }, - plugins: [], };