mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:43:25 +00:00
15 lines
235 B
TypeScript
15 lines
235 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
import base from "./base";
|
|
import colors from "./colors";
|
|
|
|
export default {
|
|
content: base.content,
|
|
presets: [base],
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
},
|
|
},
|
|
} satisfies Config;
|