/** * Cyberpunk Theme Colors * High contrast neon colors against dark backgrounds */ export const Colors = { // Core darkBg: "#050511", darkCard: "#12122A", // Neon Accents neonBlue: "#00F3FF", neonPink: "#FF00E6", neonYellow: "#FCEE09", neonGreen: "#39FF14", // Text textPrimary: "#FFFFFF", textSecondary: "#B0B0C4", textTertiary: "#5E5E7A", // darker muted text // Functional tint: "#00F3FF", tabIconDefault: "#5E5E7A", tabIconSelected: "#00F3FF", // Status error: "#FF003C", success: "#39FF14", warning: "#FCEE09", // Gradients (Arrays for LinearGradient) gradients: { primary: ["#00F3FF", "#0066FF"], secondary: ["#FF00E6", "#9D00FF"], dark: ["#12122A", "#050511"], }, }; export default Colors;