1import { useTheme } from 'react-native-paper'; 2 3export default function useTextColor() { 4 const {colors} = useTheme(); 5 return colors.text; 6} 7