updating colors

This commit is contained in:
Antoine M 2024-01-30 17:12:47 +01:00
parent 4eee4ddde2
commit 9a01bca84d

View File

@ -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: [],
};