lhoist-stay-safe/tailwind.config.js

30 lines
552 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
construction: "#F1D524",
lhoist: "#299BD4",
lhoistlight: "#B5F2FF",
lhoistdark: "#02597A",
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",
},
},
},
},
};