mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 07:13:24 +00:00
22 lines
399 B
TypeScript
22 lines
399 B
TypeScript
// @ts-expect-error - no types
|
|
import nativewind from 'nativewind/preset';
|
|
import type { Config } from 'tailwindcss';
|
|
import colors from './app/constants/Colors';
|
|
|
|
export default {
|
|
content: ['./app/**/*.{js,jsx,ts,tsx}'],
|
|
presets: [
|
|
nativewind,
|
|
{
|
|
theme: {
|
|
extend: {
|
|
colors,
|
|
fontFamily: {
|
|
|
|
}
|
|
},
|
|
},
|
|
},
|
|
],
|
|
} satisfies Config;
|