15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
module.exports = {
|
|
content: ["./src/**/*.{ts,tsx}", "./index.html"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: "#0f172a",
|
|
fog: "#e2e8f0",
|
|
mint: "#14b8a6",
|
|
steel: "#94a3b8"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|