import { createViewStyles, createTextStyles } from '../lib/styles'; import { colors } from '../config'; export default { ...createViewStyles({ red: { backgroundColor: colors.red, }, redHover: { backgroundColor: colors.red95, }, green: { backgroundColor: colors.green, }, greenHover: { backgroundColor: colors.green90, }, blue: { backgroundColor: colors.blue80, }, blueHover: { backgroundColor: colors.blue60, }, white80: { color: colors.white80, }, white: { color: colors.white, }, icon: { position: 'absolute', alignSelf: 'flex-end', right: 8, marginLeft: 8, }, iconTransparent: { position: 'absolute', alignSelf: 'flex-end', right: 42, }, common: { cursor: 'default', paddingTop: 9, paddingLeft: 9, paddingRight: 9, paddingBottom: 9, borderRadius: 4, flex: 1, flexDirection: 'column', alignContent: 'center', justifyContent: 'center', }, }), ...createTextStyles({ label: { alignSelf: 'center', fontFamily: 'DINPro', fontSize: 20, fontWeight: '900', lineHeight: 26, flex: 1, }, }), };