ecency-mobile/src/themes/darkTheme.js

37 lines
860 B
JavaScript
Raw Normal View History

import { Dimensions } from 'react-native';
export default {
// Primary Colors
2018-11-22 00:35:12 +03:00
$theme: 'darkTheme',
$mainBackgroundColor: '#1e2835',
$white: '#1e2835',
$black: '#000000',
$primaryBlue: '#357ce6',
$primaryDarkBlue: '#1a509a',
$primaryLightBlue: '#eaf2fc',
$primaryGray: '#ffff',
$primaryDarkGray: '#ffff',
$primaryLightGray: '#f6f6f6',
$primaryRed: '#e63535',
$primaryBlack: '#3c4449',
// General Colors
$borderColor: '#c5c5c5',
$bubblesBlue: '#5CCDFF',
$iconColor: '#c1c5c7',
$dangerColor: '#fff',
$warningColor: '#fff',
$successColor: '#fff',
$disableButton: '#fff',
$shadowColor: '#b0b0b0',
$disableGray: '#fff',
// Devices Sizes
$deviceHeight: Dimensions.get('window').height,
$deviceWidth: Dimensions.get('window').width,
// Fonts Properties
$primaryFont: 'Roboto',
$primaryLatterSpacing: 0,
};