tailwind
のconfig
で定義したprimary
の色とかをtailwind
のクラス以外で使用したい。
import type { Config } from "tailwindcss";
export const customColors = {
primary: "#2563eb",
secondary: "#4b5563",
danger: "#cd2626",
success: "#16a34a",
warning: "#f59e0b",
};
const config: Config = {
theme: {
extend: {
colors: customColors,
},
},
plugins: [],
};
export default config;
みたいにすればいい。