style.ts 1005 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
import { subTitle, View, title, tips } from '../../theme/colors'

const styles = StyleSheet.create({
    center: {
        marginTop: setUnit(56)
    },
    container: {
        backgroundColor: View.background,
        flex: 1
    },
    copyright: {
        color: subTitle,
        marginTop: setUnit(24),
        textAlign: 'center'
    },
    footer: {
        alignItems: 'center',
        paddingBottom: setUnit(48)
    },
    header: {
        alignItems: 'center',
        marginTop: setUnit(112)
    },
    logo: {
        height: setUnit(160),
        width: setUnit(160)
    },
    name: {
        color: title,
        fontSize: setUnit(40),
        fontWeight: '500',
        marginTop: setUnit(32)
    },
    private: {
        color: tips,
        fontSize: setUnit(26)
    },
    version: {
        color: title,
        fontSize: setUnit(32),
        marginTop: setUnit(12)
    }
})

export { styles }