37 lines
713 B
TypeScript
37 lines
713 B
TypeScript
const baseColors = {
|
|
black: '#000000',
|
|
white: '#FFFFFF',
|
|
red: '#FF4141',
|
|
green: '#3AC26E',
|
|
grey: '#F5F5F5',
|
|
darkGrey: '#D9CFC7',
|
|
yellow: '#FFD700',
|
|
pink: '#E4007C',
|
|
blue: '#86C3E3'
|
|
} 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; |