24 lines
429 B
TypeScript
24 lines
429 B
TypeScript
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
const config: Config = {
|
||
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
||
|
|
darkMode: "class",
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
brand: {
|
||
|
|
50: "#eef2ff",
|
||
|
|
100: "#e0e7ff",
|
||
|
|
400: "#818cf8",
|
||
|
|
500: "#6366f1",
|
||
|
|
600: "#4f46e5",
|
||
|
|
700: "#4338ca",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|