chain-frontend/tailwind.config.js
2024-03-06 17:41:47 +07:00

14 lines
276 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
"bg-color": "#282A40",
neutral: "#9B99B0",
primary: "#676CF6",
},
},
},
};