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