1.AI 协作文档体系重构(objections/worklines/contracts+matrix.md) 2.coord 仲裁文档(final-decisions/cross-review/final-rulings/orchestration) 3.各服务 01/02 文档补全 4.共享包初始化(shared-ts/shared-go/hooks/ui-components/ui-tokens) 5.Proto 契约补全 6.004 架构影响地图更新 7.端口分配表 8.设计规格文档
40 lines
902 B
TypeScript
40 lines
902 B
TypeScript
export type ColorScheme = {
|
|
background: string;
|
|
foreground: string;
|
|
primary: string;
|
|
secondary: string;
|
|
muted: string;
|
|
accent: string;
|
|
destructive: string;
|
|
border: string;
|
|
input: string;
|
|
ring: string;
|
|
};
|
|
|
|
export const colors = {
|
|
light: {
|
|
background: "210 40% 98%",
|
|
foreground: "222 47% 11%",
|
|
primary: "221 83% 53%",
|
|
secondary: "210 40% 96%",
|
|
muted: "210 40% 96%",
|
|
accent: "210 40% 94%",
|
|
destructive: "0 84% 60%",
|
|
border: "214 32% 91%",
|
|
input: "214 32% 91%",
|
|
ring: "221 83% 53%",
|
|
},
|
|
dark: {
|
|
background: "222 47% 11%",
|
|
foreground: "210 40% 98%",
|
|
primary: "217 91% 60%",
|
|
secondary: "217 33% 17%",
|
|
muted: "217 33% 17%",
|
|
accent: "217 33% 20%",
|
|
destructive: "0 63% 31%",
|
|
border: "217 33% 20%",
|
|
input: "217 33% 20%",
|
|
ring: "217 91% 60%",
|
|
},
|
|
} as const satisfies Record<"light" | "dark", ColorScheme>;
|