mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:53:25 +00:00
14 lines
204 B
TypeScript
14 lines
204 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
import colors from './constants/Colors';
|
|
|
|
export default {
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
},
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|