ecency-mobile/src/themes/darkTheme.js

56 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-01-23 11:54:08 +03:00
import { Dimensions, Platform, StatusBar } from 'react-native';
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',
$primaryWhiteLightBackground: '#2e3d51',
$modalBackground: '#1e2835',
2018-11-22 00:35:12 +03:00
$white: '#1e2835',
$black: '#000000',
$primaryBlue: '#357ce6',
$primaryDarkBlue: '#1a509a',
$primaryLightBlue: '#2e3d51',
2018-11-22 01:40:40 +03:00
$primaryGray: '#f5f5f5',
$primaryDarkGray: '#c1c5c7',
2018-11-22 00:35:12 +03:00
$primaryLightGray: '#f6f6f6',
$primaryRed: '#e63535',
2019-07-21 14:00:14 +03:00
$companyRed: '#c10000',
$primaryBlack: '#c1c5c7',
2018-12-21 16:02:50 +03:00
$primaryDarkText: '#526d91',
// General Colors
$borderColor: '#c5c5c5',
2018-12-21 16:02:50 +03:00
$tagColor: '#2e3d51',
$bubblesBlue: '#5CCDFF',
$borderTopColor: '#757575',
2018-12-21 16:02:50 +03:00
$iconColor: '#788187',
2018-12-24 18:38:35 +03:00
$darkIconColor: '#526d91',
$dangerColor: '#fff',
$warningColor: '#fff',
2020-12-27 21:41:08 +03:00
$successColor: '#4BB543',
$disableButton: '#fff',
2018-12-21 16:02:50 +03:00
$shadowColor: '#80000000',
$disableGray: '#fff',
$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',
2018-12-21 16:52:46 +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,
$deviceWidth: Dimensions.get('window').width,
// Fonts Properties
$primaryFont: 'Roboto',
2018-12-04 14:36:41 +03:00
$editorFont: 'RobotoMono-Regular',
$primaryLatterSpacing: 0,
};