123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- // @flow
- import color from 'color';
- import { Platform, Dimensions, PixelRatio } from 'react-native';
- import { PLATFORM } from './commonColor';
- const deviceHeight = Dimensions.get('window').height;
- const deviceWidth = Dimensions.get('window').width;
- const platform = Platform.OS;
- const platformStyle = undefined;
- const isIphoneX =
- platform === PLATFORM.IOS &&
- (deviceHeight === 812 ||
- deviceWidth === 812 ||
- deviceHeight === 896 ||
- deviceWidth === 896);
- export default {
- platformStyle,
- platform,
- // Accordion
- accordionBorderColor: '#d3d3d3',
- accordionContentPadding: 10,
- accordionIconFontSize: 18,
- contentStyle: '#f5f4f5',
- expandedIconStyle: '#000',
- headerStyle: '#edebed',
- iconStyle: '#000',
- // ActionSheet
- elevation: 4,
- containerTouchableBackgroundColor: 'rgba(0,0,0,0.4)',
- innerTouchableBackgroundColor: '#fff',
- listItemHeight: 50,
- listItemBorderColor: 'transparent',
- marginHorizontal: -15,
- marginLeft: 14,
- marginTop: 15,
- minHeight: 56,
- padding: 15,
- touchableTextColor: '#757575',
- // Android
- androidRipple: true,
- androidRippleColor: 'rgba(256, 256, 256, 0.3)',
- androidRippleColorDark: 'rgba(0, 0, 0, 0.15)',
- buttonUppercaseAndroidText: true,
- // Badge
- badgeBg: '#ED1727',
- badgeColor: '#fff',
- badgePadding: platform === PLATFORM.IOS ? 3 : 0,
- // Button
- buttonFontFamily: platform === PLATFORM.IOS ? 'System' : 'Roboto_medium',
- buttonDisabledBg: '#b5b5b5',
- buttonPadding: 6,
- buttonDefaultActiveOpacity: 0.5,
- buttonDefaultFlex: 1,
- buttonDefaultBorderRadius: 2,
- buttonDefaultBorderWidth: 1,
- get buttonPrimaryBg() {
- return this.brandPrimary;
- },
- get buttonPrimaryColor() {
- return this.inverseTextColor;
- },
- get buttonInfoBg() {
- return this.brandInfo;
- },
- get buttonInfoColor() {
- return this.inverseTextColor;
- },
- get buttonSuccessBg() {
- return this.brandSuccess;
- },
- get buttonSuccessColor() {
- return this.inverseTextColor;
- },
- get buttonDangerBg() {
- return this.brandDanger;
- },
- get buttonDangerColor() {
- return this.inverseTextColor;
- },
- get buttonWarningBg() {
- return this.brandWarning;
- },
- get buttonWarningColor() {
- return this.inverseTextColor;
- },
- get buttonTextSize() {
- return platform === PLATFORM.IOS
- ? this.fontSizeBase * 1.1
- : this.fontSizeBase - 1;
- },
- get buttonTextSizeLarge() {
- return this.fontSizeBase * 1.5;
- },
- get buttonTextSizeSmall() {
- return this.fontSizeBase * 0.8;
- },
- get borderRadiusLarge() {
- return this.fontSizeBase * 3.8;
- },
- get iconSizeLarge() {
- return this.iconFontSize * 1.5;
- },
- get iconSizeSmall() {
- return this.iconFontSize * 0.6;
- },
- // Card
- cardDefaultBg: '#fff',
- cardBorderColor: '#ccc',
- cardBorderRadius: 2,
- cardItemPadding: platform === PLATFORM.IOS ? 10 : 12,
- // CheckBox
- CheckboxRadius: platform === PLATFORM.IOS ? 13 : 0,
- CheckboxBorderWidth: platform === PLATFORM.IOS ? 1 : 2,
- CheckboxPaddingLeft: platform === PLATFORM.IOS ? 4 : 2,
- CheckboxPaddingBottom: platform === PLATFORM.IOS ? 0 : 5,
- CheckboxIconSize: platform === PLATFORM.IOS ? 21 : 16,
- CheckboxIconMarginTop: platform === PLATFORM.IOS ? undefined : 1,
- CheckboxFontSize: platform === PLATFORM.IOS ? 23 / 0.9 : 17,
- checkboxBgColor: '#039BE5',
- checkboxSize: 20,
- checkboxTickColor: '#fff',
- checkboxDefaultColor: 'transparent',
- checkboxTextShadowRadius: 0,
- // Color
- brandPrimary: platform === PLATFORM.IOS ? '#007aff' : '#3F51B5',
- brandInfo: '#62B1F6',
- brandSuccess: '#5cb85c',
- brandDanger: '#d9534f',
- brandWarning: '#f0ad4e',
- brandDark: '#000',
- brandLight: '#f4f4f4',
- // Container
- containerBgColor: '#fff',
- // Date Picker
- datePickerFlex: 1,
- datePickerPadding: 10,
- datePickerTextColor: '#000',
- datePickerBg: 'transparent',
- // FAB
- fabBackgroundColor: 'blue',
- fabBorderRadius: 28,
- fabBottom: 0,
- fabButtonBorderRadius: 20,
- fabButtonHeight: 40,
- fabButtonLeft: 7,
- fabButtonMarginBottom: 10,
- fabContainerBottom: 20,
- fabDefaultPosition: 20,
- fabElevation: 4,
- fabIconColor: '#fff',
- fabIconSize: 24,
- fabShadowColor: '#000',
- fabShadowOffsetHeight: 2,
- fabShadowOffsetWidth: 0,
- fabShadowOpacity: 0.4,
- fabShadowRadius: 2,
- fabWidth: 56,
- // Font
- DefaultFontSize: 16,
- fontFamily: platform === PLATFORM.IOS ? 'System' : 'Roboto',
- fontSizeBase: 15,
- get fontSizeH1() {
- return this.fontSizeBase * 1.8;
- },
- get fontSizeH2() {
- return this.fontSizeBase * 1.6;
- },
- get fontSizeH3() {
- return this.fontSizeBase * 1.4;
- },
- // Footer
- footerHeight: 55,
- footerDefaultBg: platform === PLATFORM.IOS ? '#F8F8F8' : '#3F51B5',
- footerPaddingBottom: 0,
- // FooterTab
- tabBarTextColor: platform === PLATFORM.IOS ? '#6b6b6b' : '#b3c7f9',
- tabBarTextSize: platform === PLATFORM.IOS ? 14 : 11,
- activeTab: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- sTabBarActiveTextColor: '#007aff',
- tabBarActiveTextColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- tabActiveBgColor: platform === PLATFORM.IOS ? '#cde1f9' : '#3F51B5',
- // Header
- toolbarBtnColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- toolbarDefaultBg: platform === PLATFORM.IOS ? '#673AB7' : '#673AB7',
- toolbarHeight: platform === PLATFORM.IOS ? 64 : 56,
- toolbarSearchIconSize: platform === PLATFORM.IOS ? 20 : 23,
- toolbarInputColor: platform === PLATFORM.IOS ? '#CECDD2' : '#fff',
- searchBarHeight: platform === PLATFORM.IOS ? 30 : 40,
- searchBarInputHeight: platform === PLATFORM.IOS ? 30 : 50,
- toolbarBtnTextColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- toolbarDefaultBorder: platform === PLATFORM.IOS ? '#a7a6ab' : '#3F51B5',
- iosStatusbar: platform === PLATFORM.IOS ? 'dark-content' : 'light-content',
- get statusBarColor() {
- return color(this.toolbarDefaultBg)
- .hex();
- },
- get darkenHeader() {
- return color(this.tabBgColor)
- .darken(0.03)
- .hex();
- },
- // Icon
- iconFamily: 'Ionicons',
- iconFontSize: platform === PLATFORM.IOS ? 30 : 28,
- iconHeaderSize: platform === PLATFORM.IOS ? 33 : 24,
- // InputGroup
- inputFontSize: 17,
- inputBorderColor: '#D9D5DC',
- inputSuccessBorderColor: '#2b8339',
- inputErrorBorderColor: '#ed2f2f',
- inputHeightBase: 50,
- get inputColor() {
- return this.textColor;
- },
- get inputColorPlaceholder() {
- return '#575757';
- },
- // Line Height
- buttonLineHeight: 19,
- lineHeightH1: 32,
- lineHeightH2: 27,
- lineHeightH3: 22,
- lineHeight: platform === PLATFORM.IOS ? 20 : 24,
- listItemSelected: platform === PLATFORM.IOS ? '#007aff' : '#3F51B5',
- // List
- listBg: 'transparent',
- listBorderColor: '#c9c9c9',
- listDividerBg: '#f4f4f4',
- listBtnUnderlayColor: '#DDD',
- listItemPadding: platform === PLATFORM.IOS ? 10 : 12,
- listNoteColor: '#808080',
- listNoteSize: 13,
- // Progress Bar
- defaultProgressColor: '#E4202D',
- inverseProgressColor: '#1A191B',
- // Radio Button
- radioBtnSize: platform === PLATFORM.IOS ? 25 : 23,
- radioSelectedColorAndroid: '#3F51B5',
- radioBtnLineHeight: platform === PLATFORM.IOS ? 29 : 24,
- get radioColor() {
- return this.brandPrimary;
- },
- // Segment
- segmentBackgroundColor: platform === PLATFORM.IOS ? '#F8F8F8' : '#3F51B5',
- segmentActiveBackgroundColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- segmentTextColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- segmentActiveTextColor: platform === PLATFORM.IOS ? '#fff' : '#3F51B5',
- segmentBorderColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- segmentBorderColorMain: platform === PLATFORM.IOS ? '#a7a6ab' : '#3F51B5',
- // Spinner
- defaultSpinnerColor: '#45D56E',
- inverseSpinnerColor: '#1A191B',
- // Tab
- tabBarDisabledTextColor: '#BDBDBD',
- tabDefaultBg: platform === PLATFORM.IOS ? '#F8F8F8' : '#3F51B5',
- topTabBarTextColor: platform === PLATFORM.IOS ? '#6b6b6b' : '#b3c7f9',
- topTabBarActiveTextColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- topTabBarBorderColor: platform === PLATFORM.IOS ? '#a7a6ab' : '#fff',
- topTabBarActiveBorderColor: platform === PLATFORM.IOS ? '#007aff' : '#fff',
- // Tabs
- tabBgColor: '#F8F8F8',
- tabFontSize: 15,
- // Text
- textColor: '#000',
- inverseTextColor: '#fff',
- noteFontSize: 14,
- get defaultTextColor() {
- return this.textColor;
- },
- // Title
- titleFontfamily: platform === PLATFORM.IOS ? 'System' : 'Roboto_medium',
- titleFontSize: platform === PLATFORM.IOS ? 17 : 19,
- subTitleFontSize: platform === PLATFORM.IOS ? 11 : 14,
- subtitleColor: platform === PLATFORM.IOS ? '#8e8e93' : '#FFF',
- titleFontColor: platform === PLATFORM.IOS ? '#000' : '#FFF',
- // Other
- borderRadiusBase: platform === PLATFORM.IOS ? 5 : 2,
- borderWidth: 1 / PixelRatio.getPixelSizeForLayoutSize(1),
- contentPadding: 10,
- dropdownLinkColor: '#414142',
- inputLineHeight: 24,
- deviceWidth,
- deviceHeight,
- isIphoneX,
- inputGroupRoundedBorderRadius: 30,
- // iPhoneX SafeArea
- Inset: {
- portrait: {
- topInset: 24,
- leftInset: 0,
- rightInset: 0,
- bottomInset: 34
- },
- landscape: {
- topInset: 0,
- leftInset: 44,
- rightInset: 44,
- bottomInset: 21
- }
- }
- };
|