export type Colors = 'green' | 'blue' | 'cyan' | 'navy' | 'yellow' | 'orange' | 'red';

export const green = '#28a745'; // 成功-绿色
export const blue = '#008EF0'; // 主要-蓝色
export const cyan = '#1EABCD'; // 信息-青色
export const navy = '#393E48'; // 导航-藏青
export const yellow = '#ffc107'; // 警告-黄色
export const orange = '#F95C2B'; // 提醒-橙色
export const red = '#dc3545'; // 危险-红色

export const black = '#000000';
export const white = '#ffffff';
