ecency-mobile/src/themes/darkTheme.js

41 lines
1.0 KiB
JavaScript
Raw Normal View History

import { Dimensions } 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',
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',
$primaryBlack: '#c1c5c7',
// General Colors
$borderColor: '#c5c5c5',
$bubblesBlue: '#5CCDFF',
$borderTopColor: '#757575',
$iconColor: '#c1c5c7',
$dangerColor: '#fff',
$warningColor: '#fff',
$successColor: '#fff',
$disableButton: '#fff',
$shadowColor: '#b0b0b0',
$disableGray: '#fff',
$editorButtonColor: '#fff',
// Devices Sizes
$deviceHeight: Dimensions.get('window').height,
$deviceWidth: Dimensions.get('window').width,
// Fonts Properties
$primaryFont: 'Roboto',
2018-12-04 14:36:41 +03:00
$editorFont: 'RobotoMono-Regular',
$primaryLatterSpacing: 0,
};