bt-react-select
Version:
24 lines (23 loc) • 500 B
JavaScript
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#344054",
secondary: "#D0D5DD",
placeholder: "#667085",
disabled: "#D0D5DD",
check: "#9f1239",
focus: "#D6BBFB",
},
boxShadow: {
focus: "0px 0px 0px 4px rgba(158, 119, 237, 0.3)",
},
opacity: {
disabled: "0.8",
},
},
},
plugins: [],
};