mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:53:24 +00:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
import colors from "./colors";
|
|
|
|
export default {
|
|
content: ["src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
},
|
|
},
|
|
} satisfies Config;
|