UNPKG

react-native-event-logger

Version:

A React Native event tracking library with debug capabilities

52 lines 1.24 kB
// Color constants for the React Native Event Logger library export const Colors = { // Primary colors primary: '#4CAF50', primaryLight: '#E8F5E8', primaryDark: '#2E7D32', // Secondary colors secondary: '#2196F3', secondaryLight: '#BBDEFB', secondaryDark: '#1976D2', // Accent colors accent: '#007AFF', accentLight: '#E3F2FD', accentDark: '#1565C0', // Status colors success: '#4CAF50', error: '#F44336', warning: '#FF9800', info: '#2196F3', // Neutral colors white: '#FFFFFF', black: '#000000', gray: { light: '#F5F5F5', medium: '#E0E0E0', dark: '#666666', darker: '#333333', }, // Background colors background: { primary: '#FFFFFF', secondary: '#F0F8F0', tertiary: '#E8F5E8', lightRed: '#FFCDD2', ErrorRed: '#FFEBEE' }, // Text color text: { primary: '#333333', secondary: '#666666', inverse: '#FFFFFF', muted: '#999999', }, // Button colors button: { primary: '#4CAF50', secondary: '#2196F3', danger: '#F44336', success: '#4CAF50', }, }; //# sourceMappingURL=colors.js.map