softlofy-rn-components
Version:
A collection of commonly used components on React Native project developed by [Softlofy](https://softlofy.com/).
11 lines (8 loc) • 322 B
text/typescript
import {Appearance} from 'react-native';
import useColors from '../contexts/ColorContext/useColors';
const useAccentColor = () => {
const colorSchema = Appearance.getColorScheme();
const colors = useColors();
return colorSchema === 'dark' ? colors.white : colors.black;
};
export default useAccentColor;