19 lines
294 B
TypeScript
19 lines
294 B
TypeScript
import type { Config } from "tailwindcss"
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{ts,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ember: {
|
|
500: "#f97316",
|
|
600: "#ea580c"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
} satisfies Config |