const tintColorLight = '#007bff';
const tintColorDark = '#0a84ff';

export default {
  light: {
    text: '#000',
    background: '#fff',
    tint: tintColorLight,
    tabIconDefault: '#999',
    tabIconSelected: tintColorLight,
    primary: '#007bff',
    secondary: '#6c757d',
    success: '#0F9D58',
    danger: '#DB4437',
    warning: '#F4B400',
    info: '#4285F4',
  },
  dark: {
    text: '#fff',
    background: '#121212',
    tint: tintColorDark,
    tabIconDefault: '#777',
    tabIconSelected: tintColorDark,
    primary: '#0a84ff',
    secondary: '#86888a',
    success: '#34c759',
    danger: '#ff3b30',
    warning: '#ffcc00',
    info: '#5ac8fa',
  },
}; 