UNPKG

softlofy-rn-components

Version:

A collection of commonly used components on React Native project developed by [Softlofy](https://softlofy.com/).

9 lines (6 loc) 222 B
import {Appearance} from 'react-native'; const useThemeColor = () => { const colorSchema = Appearance.getColorScheme(); return colorSchema === 'dark' ? '#242424' : '#F1F1F1'; }; export default useThemeColor;