xref: /MusicFree/src/hooks/useColors.ts (revision 6704747af84cebd842b258efac7143542722fac5)
1import { useTheme } from 'react-native-paper';
2
3export default function useColors() {
4  const {colors} = useTheme();
5  return colors;
6}
7