| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | // @flow
import { ColorPalette } from '../../../base/styles';
const SECONDARY_COLOR = '#B8C7E0';
export const ENABLED_THUMB_COLOR = ColorPalette.blueHighlight;
export const ENABLED_TRACK_COLOR = ColorPalette.blue;
export const DISABLED_THUMB_COLOR = ColorPalette.darkGrey;
export default {
    button: {
        alignItems: 'center',
        borderRadius: 4,
        marginVertical: 8,
        paddingVertical: 10
    },
    contentWrapper: {
        alignItems: 'center',
        flexDirection: 'column',
        padding: 32
    },
    dialogTitle: {
        fontSize: 18,
        fontWeight: 'bold',
        marginBottom: 10
    },
    displayNameText: {
        fontWeight: 'bold',
        marginVertical: 10
    },
    editButton: {
        alignSelf: 'flex-end',
        paddingHorizontal: 10
    },
    editIcon: {
        color: 'black',
        fontSize: 16
    },
    field: {
        borderColor: SECONDARY_COLOR,
        borderRadius: 4,
        borderWidth: 1,
        marginVertical: 8,
        padding: 8
    },
    fieldError: {
        color: ColorPalette.warning,
        fontSize: 10
    },
    fieldRow: {
        paddingTop: 16
    },
    fieldLabel: {
        textAlign: 'center'
    },
    formWrapper: {
        alignItems: 'stretch',
        alignSelf: 'stretch',
        paddingVertical: 16
    },
    joiningMessage: {
        textAlign: 'center'
    },
    loadingIndicator: {
        marginVertical: 36
    },
    participantBox: {
        alignItems: 'center',
        alignSelf: 'stretch',
        borderColor: SECONDARY_COLOR,
        borderRadius: 4,
        borderWidth: 1,
        marginVertical: 18,
        paddingVertical: 12
    },
    primaryButton: {
        alignSelf: 'stretch',
        backgroundColor: 'rgb(3, 118, 218)'
    },
    primaryButtonText: {
        color: 'white'
    },
    secondaryButton: {
        alignSelf: 'stretch',
        backgroundColor: 'transparent'
    },
    secondaryText: {
        color: 'rgba(0, 0, 0, .7)'
    },
    // KnockingParticipantList
    knockingParticipantList: {
        alignSelf: 'stretch',
        backgroundColor: 'rgba(22, 38, 55, 0.8)',
        flexDirection: 'column'
    },
    knockingParticipantListButton: {
        borderRadius: 4,
        marginHorizontal: 3,
        paddingHorizontal: 10,
        paddingVertical: 5
    },
    knockingParticipantListDetails: {
        flex: 1,
        marginLeft: 10
    },
    knockingParticipantListEntry: {
        alignItems: 'center',
        flexDirection: 'row',
        padding: 10
    },
    knockingParticipantListPrimaryButton: {
        backgroundColor: 'rgb(3, 118, 218)'
    },
    knockingParticipantListSecondaryButton: {
        backgroundColor: 'transparent'
    },
    knockingParticipantListText: {
        color: 'white'
    },
    lobbySwitchContainer: {
        flexDirection: 'column',
        marginTop: 16
    },
    lobbySwitchIcon: {
        alignSelf: 'flex-end'
    }
};
 |