Spaces:
Sleeping
Sleeping
File size: 694 Bytes
49d3082 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
const withMT = require("@material-tailwind/react/utils/withMT");
/** @type {import('tailwindcss').Config} */
export default withMT({
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}", "./node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}", "./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: { 50: "#f4f8fb", 100: "#e7f1f7", 200: "#cae0ed", 300: "#9bc6de", 400: "#65a8cb", 500: "#3d84a8", 600: "#317298", 700: "#285c7c", 800: "#254e67", 900: "#234357", 950: "#172b3a" },
base: "#e6e6e6",
},
},
},
plugins: [],
});
|