const baseColors = { black: '#000000', white: '#FFFFFF', red: '#FF4141', green: '#3AC26E', grey: '#F9F9F9', } as const; export default { fixed: { ...baseColors, }, // LightTheme light: { primary: '#007AFF', secondary: '#5856D6', error: baseColors.red, success: baseColors.green, background: baseColors.white, surface: '#F2F2F7', text: baseColors.black, }, // DarkTheme dark: { primary: '#0A84FF', secondary: '#5E5CE6', error: '#FF453A', success: '#32D74B', background: baseColors.black, surface: '#1C1C1E', text: baseColors.white, }, } as const;