2019-01-23 11:54:08 +03:00
|
|
|
import { Dimensions, Platform, StatusBar } from 'react-native';
|
2018-11-20 18:48:28 +03:00
|
|
|
|
|
|
|
export default {
|
|
|
|
// Primary Colors
|
2018-11-22 00:35:12 +03:00
|
|
|
$theme: 'darkTheme',
|
2018-11-22 01:40:40 +03:00
|
|
|
$primaryBackgroundColor: '#1e2835',
|
|
|
|
$primaryLightBackground: '#2e3d51',
|
|
|
|
$primaryGrayBackground: '#1e2835',
|
2019-01-08 15:08:01 +03:00
|
|
|
$primaryWhiteLightBackground: '#2e3d51',
|
2020-12-12 23:50:43 +03:00
|
|
|
$modalBackground: '#1e2835',
|
2018-11-22 00:35:12 +03:00
|
|
|
$white: '#1e2835',
|
|
|
|
$black: '#000000',
|
|
|
|
$primaryBlue: '#357ce6',
|
|
|
|
$primaryDarkBlue: '#1a509a',
|
2018-11-22 14:28:48 +03:00
|
|
|
$primaryLightBlue: '#2e3d51',
|
2018-11-22 01:40:40 +03:00
|
|
|
$primaryGray: '#f5f5f5',
|
2018-11-22 13:08:35 +03:00
|
|
|
$primaryDarkGray: '#c1c5c7',
|
2018-11-22 00:35:12 +03:00
|
|
|
$primaryLightGray: '#f6f6f6',
|
|
|
|
$primaryRed: '#e63535',
|
2019-07-21 14:00:14 +03:00
|
|
|
$companyRed: '#c10000',
|
2018-11-22 13:08:35 +03:00
|
|
|
$primaryBlack: '#c1c5c7',
|
2018-12-21 16:02:50 +03:00
|
|
|
$primaryDarkText: '#526d91',
|
2018-11-20 18:48:28 +03:00
|
|
|
|
|
|
|
// General Colors
|
|
|
|
$borderColor: '#c5c5c5',
|
2018-12-21 16:02:50 +03:00
|
|
|
$tagColor: '#2e3d51',
|
2018-11-20 18:48:28 +03:00
|
|
|
$bubblesBlue: '#5CCDFF',
|
2018-11-22 14:28:48 +03:00
|
|
|
$borderTopColor: '#757575',
|
2018-12-21 16:02:50 +03:00
|
|
|
$iconColor: '#788187',
|
2018-12-24 18:38:35 +03:00
|
|
|
$darkIconColor: '#526d91',
|
2018-11-20 18:48:28 +03:00
|
|
|
$dangerColor: '#fff',
|
|
|
|
$warningColor: '#fff',
|
2020-12-27 21:41:08 +03:00
|
|
|
$successColor: '#4BB543',
|
2018-11-20 18:48:28 +03:00
|
|
|
$disableButton: '#fff',
|
2018-12-21 16:02:50 +03:00
|
|
|
$shadowColor: '#80000000',
|
2018-11-20 18:48:28 +03:00
|
|
|
$disableGray: '#fff',
|
2018-11-28 13:14:19 +03:00
|
|
|
$editorButtonColor: '#fff',
|
2018-12-17 15:43:26 +03:00
|
|
|
$pureWhite: '#ffffff',
|
2018-12-21 16:52:46 +03:00
|
|
|
$notificationBorder: '#1e2835',
|
2019-01-17 12:50:51 +03:00
|
|
|
$tableTrColor: '#2e3d51',
|
|
|
|
$tableBorderColor: '#1e2835',
|
2019-01-28 12:46:39 +03:00
|
|
|
$noConnectionColor: '#788187',
|
2021-06-22 11:10:11 +03:00
|
|
|
$borderedButtonBlue: '#5CCDFF',
|
2018-12-21 16:52:46 +03:00
|
|
|
|
2018-11-20 18:48:28 +03:00
|
|
|
// Devices Sizes
|
2019-01-23 11:54:08 +03:00
|
|
|
$deviceHeight:
|
|
|
|
Platform.OS === 'ios'
|
|
|
|
? Dimensions.get('window').height
|
|
|
|
: Dimensions.get('window').height + StatusBar.currentHeight,
|
2018-11-20 18:48:28 +03:00
|
|
|
$deviceWidth: Dimensions.get('window').width,
|
|
|
|
|
|
|
|
// Fonts Properties
|
|
|
|
$primaryFont: 'Roboto',
|
2018-12-04 14:36:41 +03:00
|
|
|
$editorFont: 'RobotoMono-Regular',
|
2018-11-20 18:48:28 +03:00
|
|
|
$primaryLatterSpacing: 0,
|
|
|
|
};
|