Files
native-app/apps/mobile/tailwind.config.ts
2024-01-27 23:20:08 +01:00

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;