mirror of
https://github.com/abhay-raizada/PeerScribe.git
synced 2026-04-26 08:14:03 +00:00
40 lines
758 B
TypeScript
40 lines
758 B
TypeScript
import {Dimensions, StyleSheet} from 'react-native';
|
|
import {Colors} from 'react-native/Libraries/NewAppScreen';
|
|
|
|
export const styles = StyleSheet.create({
|
|
input: {
|
|
height: 40,
|
|
margin: 12,
|
|
borderWidth: 1,
|
|
borderBottomColor: 'white',
|
|
padding: 10,
|
|
color: Colors.white,
|
|
},
|
|
sectionContainer: {
|
|
marginTop: 32,
|
|
paddingHorizontal: 24,
|
|
width: Dimensions.get('window').width - 80,
|
|
color: Colors.white,
|
|
},
|
|
sectionTitle: {
|
|
fontSize: 24,
|
|
fontWeight: '600',
|
|
color: Colors.white,
|
|
},
|
|
sectionDescription: {
|
|
marginTop: 8,
|
|
fontSize: 18,
|
|
fontWeight: '400',
|
|
color: Colors.white,
|
|
},
|
|
highlight: {
|
|
fontWeight: '500',
|
|
},
|
|
});
|
|
|
|
export const TextTheme = [
|
|
{
|
|
color: Colors.white,
|
|
},
|
|
];
|